Skip to content
#

dataflow-programming

Here are 73 public repositories matching this topic...

Quincunx271
Quincunx271 commented May 2, 2018

We could use some documentation. The examples certainly help, but I found that once I started trying to do more complex things, I ended up having to dig into the source code to understand how to use this library.

GitHub has a feature where each repository can have a website. Maybe we could set up the documentation there? Or maybe we could use GitHub's wiki feature?

mr-j0nes
mr-j0nes commented Jun 27, 2017

I know you guys are focused on bringing more features to the lib, but it would be good to provide a bit better documentation and examples (I sent another post about this), so the ones willing to use the current version can fully understand what they can do with it..

E.g.

  • I am not sure how to use signals, I can see raft::fileread uses raft::eof, but not sure what is done with it.
  • I don't
fibo
fibo commented Jan 9, 2016

Add classic hello world to dflow examples: found it here https://nodejs.org/en/about/

const http = require('http');

const hostname = '127.0.0.1';
const port = 1337;

http.createServer((req, res) => {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end('Hello World\n');
}).listen(port, hostname, () => {
  console.log(`Server running at http://${hostname}:${port}/`);
});

Improve this page

Add a description, image, and links to the dataflow-programming topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the dataflow-programming topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.