https://github.com/thomd/on-javascript
some notes on javascript (using literate-programming)
https://github.com/thomd/on-javascript
Last synced: about 1 year ago
JSON representation
some notes on javascript (using literate-programming)
- Host: GitHub
- URL: https://github.com/thomd/on-javascript
- Owner: thomd
- Created: 2014-08-13T18:57:51.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-03-31T21:43:03.000Z (about 10 years ago)
- Last Synced: 2025-02-05T21:42:49.242Z (over 1 year ago)
- Language: Shell
- Homepage:
- Size: 23.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# On Javascript

Some personal notes about javascript using [literate javascript][1].
1. [on Objects](objects.js.md)
2. [on Functions](functions.js.md)
2. [on Generators](generators.js.md)
### Usage
Evaluate with [iojs][4] or [nodejs][2]:
litjs .js.md
litjs -e node:harmony <script>.js.md
Evaluate with [rhino][3]:
litjs -e rhino <script>.js.md
Evaluate using a file watcher with the `-w` option
### Install
Install javascript environments:
brew install nvm
nvm install node
nvm install iojs
brew install rhino
Install `litjs`:
make
[1]: http://en.wikipedia.org/wiki/Literate_programming
[2]: http://nodejs.org
[3]: https://developer.mozilla.org/de/docs/Rhino
[4]: https://iojs.org/en/index.html