https://github.com/appfeel/run-es6
https://github.com/appfeel/run-es6
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/appfeel/run-es6
- Owner: appfeel
- License: mit
- Created: 2020-09-03T18:09:06.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-03T22:03:20.000Z (over 3 years ago)
- Last Synced: 2025-02-13T16:37:43.732Z (3 months ago)
- Language: JavaScript
- Size: 21.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
RUN-ES6
-------A Library to run es6, es7, typescript from command line on the fly through babel 7.
For those who prefer babel to compile typescript files.
# Install
```sh
npm i run-es6
```# Usage
In your `package.json`:
```json
{
"scripts": {
"start": "run-es6 your-script.ts",
"test": "nodemon node_modules/run-es6 your-script.ts"
}
}
```It will use your `.babelrc` configuration.