https://github.com/azz/chakrarepl
A basic REPL (Read Eval Print Loop) for Microsoft's Chakra JS Engine
https://github.com/azz/chakrarepl
Last synced: 4 months ago
JSON representation
A basic REPL (Read Eval Print Loop) for Microsoft's Chakra JS Engine
- Host: GitHub
- URL: https://github.com/azz/chakrarepl
- Owner: azz
- Created: 2016-01-14T16:24:05.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-14T16:33:00.000Z (over 9 years ago)
- Last Synced: 2025-01-01T00:36:33.483Z (6 months ago)
- Language: C++
- Size: 61.5 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Chakra REPL
===========This is a really quickly put together REPL for Microsoft's Chakra JavaScript engine.

To get this to run you will need to build ChakraCore (see [here](https://github.com/Microsoft/ChakraCore/wiki/Building-ChakraCore)), and link it to this project (`ChakraREPL.sln`) in Visual Studio.
Build this project's `exe`, copy `ChakraCore.dll` file into `.\x64\Debug`, and run the `exe`.
[`ChakraREPL/ChakraREPL.cpp`](https://github.com/DerFlatulator/ChakraREPL/blob/master/ChakraREPL/ChakraREPL.cpp) is the entry point and main source file.
The reasons for this repo's existence are:
- I wanted to play around with Chakra.
- Hopefully someone finds this useful when getting started integrating ChakraCore into their software.