|
|
|
|
|
by krat0sprakhar
4328 days ago
|
|
If you like processing, checkout p5.js[0] (released on HN yesterday) which is a pure javascript port with some other differences[1]. The main goal of Processing.js is to execute Processing files in HTML5, but not necessarily to write native HTML5. It supports a mixed syntax of Processing and JavaScript, where the JavaScript is not really meant to be consumed by the end-user. Processing.js is a port of Processing to JS, using regex to convert Java into JS. It is a good tool for those that want to run simple sketches on the web, however, it is quite opaque. It can be difficult for someone to understand how it works, how to fix things when it doesn't work, or how to modify or extend the library. As Processing.js says on their website, "it's not magic, but almost." [0] - http://p5js.org/ [1] - https://github.com/lmccart/p5.js#how-is-this-different-than-... |
|