Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 2 days 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-14T16:33:00.000Z (almost 9 years ago)
- Last Synced: 2024-11-08T13:05:52.470Z (about 2 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.
![REPL](https://raw.githubusercontent.com/DerFlatulator/ChakraREPL/master/chakra-repl.png)
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.