GithubHelp home page GithubHelp logo

nicolasdao / core-async Goto Github PK

View Code? Open in Web Editor NEW
2.0 2.0 0.0 235 KB

JS implementation of the Clojure core.async library aimed at implementing CSP (Concurrent Sequential Process) programming style. Designed to be used with the npm package 'co'.

License: BSD 3-Clause "New" or "Revised" License

JavaScript 100.00%
channel co concurrency csp

core-async's People

Contributors

nicolasdao avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar

core-async's Issues

Passing a channel as an argument valid?

Hey man! Just now getting a chance to play with this. Wondering if I'm just doing something wrong, but the way I usually use channels are as arguments to an async function. Is something like this possible?

const namer = (_I_, _O_) =>
  co(function *() {
    const name = yield _I_.take() //?
    const fancy_name = `${name}izer`
    yield _O_.put(fancy_name)
  })

const _I_ = new Channel()
const _O_ = new Channel()

co(function *() {
  yield _I_.put("Clojure") //?
  yield namer(_I_, _O_)
  const fancy_name = yield _O_.take()
  console.log("hello", fancy_name)
})

Holy mackerel!

I was hopelessly roaming around the internets (coming from Clojure) looking for some kind of quasi queue implementation because I missed core.async. Thank you thank you thank you for putting this together.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.