Go to file
Dmitry Baranovskiy 954aabd172 Merge branch 'master' of https://github.com/adobe-webplatform/savage 2013-10-22 11:00:51 -07:00
demos Fix croc demo for IE10 2013-10-22 11:00:42 -07:00
dist Fix for bug #43 2013-10-21 03:45:14 -07:00
src Fix for bug #43 2013-10-21 03:45:14 -07:00
test Removing test regarding asPX for further investigation. #44 2013-10-21 14:49:51 -07:00
.gitignore Fix for bug #24 2013-10-14 23:02:50 +11:00
.gitmodules Moving submodules (part 1) 2013-08-16 11:15:34 +10:00
CONTRIBUTING Added contributing file 2013-08-16 14:50:35 +10:00
Gruntfile.js Change name to Snap.svg. Added dr.js to grunt via grunt-exec 2013-09-25 15:52:57 +10:00
LICENSE Add License 2013-08-15 18:31:27 +10:00
NOTICE add license info 2013-10-16 11:15:55 -07:00
README.md Fixed some text. Added a link. 2013-10-22 10:23:59 -07:00
dr.json Change name to Snap.svg. Added dr.js to grunt via grunt-exec 2013-09-25 15:52:57 +10:00
package.json Force dr.js to be at least 0.0.10 2013-10-21 07:13:38 -07:00

README.md

Snap.svg

A JavaScript SVG library for the modern web. Learn more at snapsvg.io.

API Reference is in dist/reference.html.

Building

Snap.svg uses Grunt to build.

  • Open the terminal from the Snap.svg directory:

      cd Snap.svg
    
  • Install its command line interface (CLI) globally:

      npm install -g grunt-cli
    

*You might need to use sudo npm, depending on your configuration.

  • Install dependencies with npm:

      npm install
    

*Snap.svg uses Grunt 0.4.0. You might want to read more on their website if you havent upgraded since a lot has changed.

  • Type grunt in the command line to build the files.
  • The results will be built into the release folder.
  • Alternatively type grunt watch to have the build run automatically when you make changes to source files.

Contributing

  • Fill out the CLA.

  • Fork the repo.

  • Create a branch:

      git checkout -b my_branch
    
  • Add your changes.

  • Commit your changes:

      git commit -am "Added some awesome stuff"
    
  • Push your branch:

      git push origin my_branch
    
  • Make a pull request.