Thursday, October 15, 2015

Javascript libraries that work in Illustrator

Some libraries developed for the web also work inside Illustrator. Here is a list:
  • md5.js
  • color.js
  • handlebars.js
  • moment.js
  • underscore.js
  • json2.js
  • chroma.js
  • numeral.js
  • sylvester.js
In some case they might not work out of the box because nested three-way assignments don’t work. This

return a ? b ? 0 : -j : i;

needs to be edited as

return a ? (b ? 0 : -j) : i;

It just takes some patience.