-
Notifications
You must be signed in to change notification settings - Fork 355
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support Node.js/RequireJS/TypeScript #119
Open
arcatdmz
wants to merge
32
commits into
NeilFraser:master
Choose a base branch
from
arcatdmz:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This reverts commit 3bc0116.
…he SPDX license expression
…hange file names.
…mically set acorn runtime
this is out of date :( |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I've been a big fan of this interpreter for several years, and have used this for my research projects such as TextAlive and f3.js - so let me firstly thank you for open-sourcing such a valuable codebase. I forked my own code which has evolved by itself for a while, and yesterday, noticed that the original repo is still growing ... significantly!
So, instead of merging all the recent changes into my own fork, I decided to create a fresh fork that matches my needs and that could benefit more people, hopefully including the original authors of this interpreter.
This fork contains the following changes:
dist/interpreter.d.ts
.tsc
... the main body of the interpreter is now compiled with the TypeScript compilertsc
with theumd
option that producesdist/interpreter.js
that can be loaded from a web browser with RequireJS or from a Node.js environment.webpack
... to statically load the library from a web browser,dist/interpreter.global.js
anddist/acorn_interpreter.js
are generated with help of Webpack.README.md
shows basic usage.https://junkato.jp/JS-Interpreter/
shows the demo of running { raw sources, compressed bundle, dynamically loaded library } whose source code can be found atindex.html
. A very simple Node.js example can also be found atindex.ts
.To build the repo, simply type
npm install
, and then, type either one ofnpm run build
,npm run build-global
, ornpm run build-with-acorn
.