One option is paper.js
http://paperjs.org/examples/
Paper.js is not a lib, but more of an framework. It has great layer model (Like photoshop) with grouping and stuff, but you don't get any out of the box solutions with it, just primitives (shape[line, circle, triangle...], path, layer) and great Document Object Model to build upon.
Right approach with paper.js* is to write your own JS classes with your app logic in them, and just talk to paper as "provider of graphics/graphics api"
*in a same way that game developers write their own GAMES but they USE openGL OR directX as low level api..