A minimal concurrency library for JavaScript inspired by Go's channels and CSP. Provides channel-based communication with read/write operations and select-like event multiplexing. Requires Node.js and uses callback-style async. Version 0.0.11 is the latest but appears abandoned with no updates since 2013. Package name collision with CommonJS module system; not related.
npm install cjsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Creates a channel, reads and writes a value asynchronously using callbacks.
Consider using modern alternatives like 'async' or reactive streams.
Always handle errors in callbacks, or wrap in try-catch.
Run 'npm install cjs' and ensure node_modules is present.
Use default import: import cjs from 'cjs'; then cjs.newChannel().
No dependency data recorded yet.