Giter Club home page Giter Club logo

pull-stream-docs's Introduction

pull-stream-docs

  • uses ecosystem-docs to aggregate modules within the pull-stream ecosystem, both inside the pull-stream org and out.
  • using inu to render a static website to discover and reference modules within the pull-stream ecosystem.

the list of modules included within the ecosystem is ./modules.md.

the built output is pull-stream/pull-stream.github.io which is rendered at https://pull-stream.github.io.

adding a module to the ecosystem

  1. edit ./modules.md to include your module within the appropriate category.
  2. submit a pull request here to apply this change.
  3. a pull-stream maintainer will merge your change and re-deploy the website.

maintainer how to

install

git clone git://github.com/pull-stream/pull-stream-docs
cd pull-stream-docs
npm install

start development server

npm start

deploy to production

npm run deploy:remote
npm run deploy

inspiration

license

The Apache License

Copyright © 2016 Michael Williams

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

pull-stream-docs's People

Contributors

ahdinosaur avatar alanshaw avatar amsross avatar brechtcs avatar clehner avatar dignifiedquire avatar dominictarr avatar elavoie avatar jamen avatar jdvorak avatar maackle avatar nichoth avatar nrkn avatar pietgeursen avatar regular avatar reqshark avatar rjmk avatar santiagogil avatar yoshuawuyts avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

pull-stream-docs's Issues

automated deploy is broken

https://travis-ci.org/pull-stream/pull-stream-docs/builds/244385632

full log: https://api.travis-ci.org/jobs/244385633/log.txt?deansi=true

/home/travis/build/pull-stream/pull-stream-docs/scripts/index.js:9
  if (err) throw err
           ^

Error: Bad credentials
    at Request._callback (/home/travis/build/pull-stream/pull-stream-docs/node_modules/ecosystem-docs/sync.js:139:37)
    at Request.self.callback (/home/travis/build/pull-stream/pull-stream-docs/node_modules/ecosystem-docs/node_modules/request/request.js:188:22)
    at emitTwo (events.js:87:13)
    at Request.emit (events.js:172:7)
    at Request.<anonymous> (/home/travis/build/pull-stream/pull-stream-docs/node_modules/ecosystem-docs/node_modules/request/request.js:1171:10)
    at emitOne (events.js:77:13)
    at Request.emit (events.js:169:7)
    at IncomingMessage.<anonymous> (/home/travis/build/pull-stream/pull-stream-docs/node_modules/ecosystem-docs/node_modules/request/request.js:1091:12)
    at IncomingMessage.g (events.js:260:16)
    at emitNone (events.js:72:20)

babel-plugin-pull

I created this Babel plugin inspired from pull-stream/pull-stream#90 that lets you use a "pipe operator":

oscillator({ wave: 'sine' })
| gain(0.5)
| speaker()

One of the more major benefits over the other plugins is you can compose things together in a really nice way:

// Create a source
const baz = foo() | bar()

// Use it
baz 
| qux()
| oof()

I was wondering where I should list this in the docs.

Which projects are using pull-streams?

Hi all,

I am writing an academic paper that compares pull-streams with other programming approaches and in order to get academics interested I need to make a case that pull-streams are both interesting from a design point of view and used by real world projects. Which end-user applications, protocols, or libraries are you using pull-streams for? The higher profile the better as it increases the possibility that academics will have heard of it. Otherwise, cool applications that would have been too complicated to write in other styles also qualify.

So far @dominictarr told me js-ipfs and ssb are the biggest ones. Do you know of any others?

pull-await: await syntax on promises in pull streams

I have made a pull-stream module, but I'm confused about adding it. I don't know if there is specific requirements and how to add it to the docs here.

You can check it at jamen/pull-stream. It basically ends up looking like this inside of pull-stream:

var await = require('pull-await');

pull(
  // Pass any regular data or promises
  pull.values([
    'hello',
    Promise.resolve('world').delay(250),
    request('https://registry.npmjs.org/pull-stream/0.1.0')
  ]),

  await, // use pull-await to resolve them.

  pull.collect(function(err, data) {
    console.log(data);
  });
);

This is my first module, pretty new, but it is awesome so far. :)

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.