JavaScript Vector Library
npm install snapsvgSnap.svg ·    
======
A JavaScript SVG library for the modern web. Learn more at snapsvg.io.
bower install snap.svg !Bowernpm install snapsvg  * About Snap.svg
* Getting Started
* API Reference
* Slack Room. Invite
In your HTML file, load simply by:
``html`/dist
No other scripts are needed. Both the minified and uncompressed (for development) versions are in the folder.
To load with webpack use following command:
`jsimports-loader?this=>window,fix=>module.exports=0!snapsvg/dist/snap.svg.js
const Snap = require();`
Snap.svg uses Grunt to build.
* Open the terminal from the Snap.svg directory:
`sh`
cd Snap.svg`
* Install its command line interface (CLI) globally:sh`
npm install -g grunt-clisudo npm
_*You might need to use , depending on your configuration._
* Install dependencies with npm:
`sh`
npm install
_*Snap.svg uses Grunt 0.4.0. You might want to read more on their website if you haven’t upgraded since a lot has changed._
* To build the files run
`sh`
gruntdist
* The results will be built into the folder.grunt watch
* Alternatively type to have the build run automatically when you make changes to source files.
Tests are located in test folder. To run tests, simply open test.html in there. Automatic tests use PhantomJS to scrap this file, so you can use it as a reference.
Alternatively, install PhantomJS and run command
`sh`
grunt test
* Fill out the CLA.
* Fork the repo.
* Create a branch:
`sh`
git checkout -b my_branch`
* Add your changes.
* Check that tests are passing
* Commit your changes:sh`
git commit -am "Added some awesome stuff"`
* Push your branch:sh`
git push origin my_branchdev
* Make a pull request to (!) branch.
Note: Pull requests to other branches than dev` or without filled CLA wouldn’t be accepted.