Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vsivsi/meteor-queue-async
Meteor package to wrap queue-async, a very lightweight async library
https://github.com/vsivsi/meteor-queue-async
Last synced: 19 days ago
JSON representation
Meteor package to wrap queue-async, a very lightweight async library
- Host: GitHub
- URL: https://github.com/vsivsi/meteor-queue-async
- Owner: vsivsi
- License: mit
- Created: 2014-02-03T10:35:13.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2016-04-01T21:10:01.000Z (over 8 years ago)
- Last Synced: 2024-10-08T01:41:56.413Z (30 days ago)
- Language: JavaScript
- Homepage: https://atmospherejs.com/vsivsi/queue-async
- Size: 6.84 KB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## meteor-queue-async
**DEPRECATED! This package is no longer works or is necessary for Meteor 1.3 and above, and will no longer be maintained!**
Beginning with Meteor 1.3, you can simply use the built-in npm support instead of using this package.
`meteor npm install --save d3-queue`
And then in your client and/or server code:
`import { QueueAsync } from 'd3-queue';`
The documentation below is for legacy purposes only!
= = = = =
A meteorite package for [Atmosphere](https://atmosphere.meteor.com), providing a wrapper for the [queue-async](https://github.com/mbostock/queue) library by [Mike Bostock](https://github.com/mbostock).
Quoting from the author:
> Queue.js is yet another asynchronous helper library for JavaScript.
> Think of it as a minimalist version of Async.js that allows fine-tuning over parallelism.
> Or, think of it as a version of TameJs that does not use code generation.### How to install:
1. inside your project, run:
`$ meteor add vsivsi:queue-async``queue-async` has no dependencies on the client or server.
### In your Meteor project:
Exposes the `QueueAsync` object.
API documentation is available at the [queue-async page on github](https://github.com/mbostock/queue)