Skip to content

Commit

Permalink
fix: naming is hard for so many reasons
Browse files Browse the repository at this point in the history
  • Loading branch information
reconbot committed May 13, 2018
1 parent c0077b2 commit 1a17803
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# iterator-streams
# streaming-iterables

[![Build Status](https://travis-ci.org/reconbot/iterator-streams.svg?branch=master)](https://travis-ci.org/reconbot/iterator-streams) [![Try iterator-streams on RunKit](https://badge.runkitcdn.com/iterator-streams.svg)](https://npm.runkit.com/iterator-streams) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![Build Status](https://travis-ci.org/reconbot/streaming-iterables.svg?branch=master)](https://travis-ci.org/reconbot/streaming-iterables) [![Try streaming-iterables on RunKit](https://badge.runkitcdn.com/streaming-iterables.svg)](https://npm.runkit.com/streaming-iterables) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)

A collection of utilities that work with sync and async iterables and iterators. Designed to replace your streams. Think some sort of combination of [`bluestream`](https://www.npmjs.com/package/bluestream) and [ramda](http://ramdajs.com/) but for a much more simple construct, async iterators. The goal is to make it dead easy to replace your stream based processes with async iterators, which in general should make your code smaller, faster and have less bugs.

Expand Down
2 changes: 1 addition & 1 deletion example.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { parallelMap, map, collect } = require('iterator-streams')
const { parallelMap, map, collect } = require('streaming-iterables')
const got = require('got')

const pokeGenerator = async function* () {
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "iterator-streams",
"name": "streaming-iterables",
"version": "0.0.2",
"description": "A collection of utilities that work with sync and async iterables and iterators. Designed to replace your streams.",
"main": "dist",
"types": "dist/index.d.ts",
"repository": "git@github.com:reconbot/iterator-streams.git",
"homepage": "https://github.com/reconbot/iterator-streams",
"repository": "git@github.com:reconbot/streaming-iterables.git",
"homepage": "https://github.com/reconbot/streaming-iterables",
"runkitExampleFilename": "example.js",
"scripts": {
"test": "npm run unit-test && npm run lint",
Expand Down

0 comments on commit 1a17803

Please sign in to comment.