JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4
  • Score
    100M100P100Q27794F
  • License Apache-2.0

A simple particle system for NodeJs

Package Exports

  • node-particles

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (node-particles) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

CircleCI Coverage Status npm version Node-Particles

This repository provides a simple, programatic API to define a particle system in Javascript and use it in your NodeJs project (i.e. as a backend library).

The base functionality has been forked from JavaScript-Particle-System so if you are looking for a particle system for the browser that's the place to go. There is also a very nice article from the same author here.

Usage

The easiest way of using the library is by means of np:m

npm install node-particles

Then from your scripts you can consume it using require:

var ns = require ("node-particles")

Quick Example