Try it out: http://jmmk.github.io/javascript-externs-generator/
This is a tool that generates an extern file detailing an object's properties, methods, and prototype. It's specifically meant for use with the Google Closure Compiler, which needs any variables defined outside of your code to be declared so that it won't rename or remove them.
For a more in-depth explanation of Google Closure Compiler advanced compilation and externs, see the Google Documentation.
- Go to http://jmmk.github.io/javascript-externs-generator/
- Load one or more JS files
- Enter the main namespace to extern
- Generate the extern
Install the cli script: npm install -g externs-generator
Basic Usage
- Make sure the JS library you want to extern is available locally:
curl http://code.jquery.com/jquery-1.9.1.js -o jquery.js
- Run the script:
generate-extern -f jquery.js -n jQuery -o jquery-extern.js
Advanced Usage - Load multiple files
- Make sure all JS libraries are available locally:
curl -O https://cdnjs.cloudflare.com/ajax/libs/react/15.0.2/react.js
curl -O https://cdnjs.cloudflare.com/ajax/libs/react/15.0.2/react-dom.js
curl -O http://cdn.jsdelivr.net/webjars/org.webjars.npm/react-relay/0.8.0/dist/relay.js
- Run the script:
generate-extern -f react.js,react-dom.js,relay.js -n Relay -o relay-extern.js
Known Issues
- Some libraries may not be externed properly from the command line - possibly due to differences in jsdom and a real browser environment. The only example I've found is PIXI.js, but it's likely there are more.
The strategy can be broken into three steps:
- Evaluate the code - we want to inspect the runtime representation of the object
- Recursively walk through the properties of the object and build a tree of all its properties and metadata about those properties
- Recursively walk through the tree and build a string representation of each property
lein figwheel dev
- open index.html in your browser
- develop
npm install
lein cljsbuild auto cli
- develop
- test:
./bin/extern -f <library>.js -n <library-name> -o extern.js
- If you ever clean/remove ./bin/extern, you will need to run
chmod +x ./bin/extern
when it is recreated
- Make sure phantomjs is installed (follow instructions at https://github.com/bensu/doo#setting-up-environments)
lein doo phantom test
Please report any issues to https://github.com/jmmk/javascript-externs-generator/issues