An HTML5 canvas drawing library, with 150+ useful methods, jQuery-like fluent interface, and cross-browser compatibility enhancements.
npm install canvasimoAn HTML5 canvas drawing library, with 150+ useful methods, jQuery-like fluent interface, and cross-browser compatibility enhancements.
Full documentation and examples available on canvasimo.com
Install Canvasimo with npm (add --save to add to your package.json)
``shell`
npm install canvasimo
...or download from GitHub
Canvasimo can be bundled with all major build tools, or loaded with a script tag and used as a global
#### With an ES6 bundler / TypeScript (recommended)
`typescript`
import Canvasimo from 'canvasimo';
// Or
import { Canvasimo } from 'canvasimo';
Both of these will import the Canvasimo class as it is both a default and named export.
#### With an ES5 bundler / commonjs
`javascript`
var canvasimo = require('canvasimo');
var Canvasimo = canvasimo.Canvasimo;
#### As a global
`html