Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rayzr522/transpiler
An attempt at a small transpiler - converts to JavaScript
https://github.com/rayzr522/transpiler
Last synced: 26 days ago
JSON representation
An attempt at a small transpiler - converts to JavaScript
- Host: GitHub
- URL: https://github.com/rayzr522/transpiler
- Owner: rayzr522
- License: mit
- Created: 2018-01-18T06:21:52.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-22T00:16:16.000Z (11 months ago)
- Last Synced: 2023-12-22T03:20:17.592Z (11 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# transpiler
> An attempt at a small transpiler - converts to JavaScript
## Installation
```bash
git clone https://github.com/Rayzr522/transpiler.git
```## Usage
There is currently no official API and very little syntax support, but you can run `demo.js` to test the transpiler. The debug output is quite verbose, which may be interesting to look through.
```bash
node demo.js
```Alternatively, you can pass code to run through the transpiler as a parameter to the command:
```bash
node demo.js 'x = you_are( "incredible" "k?" ); y = 3'
```