Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jweinst1/jscomp
A node package for generating clean javascript code
https://github.com/jweinst1/jscomp
Last synced: 5 days ago
JSON representation
A node package for generating clean javascript code
- Host: GitHub
- URL: https://github.com/jweinst1/jscomp
- Owner: jweinst1
- License: mit
- Created: 2016-12-30T01:11:25.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2016-12-30T08:08:50.000Z (almost 8 years ago)
- Last Synced: 2024-10-12T23:42:31.317Z (about 1 month ago)
- Language: TypeScript
- Size: 61.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
#jscomp
jscomp is a node package that acts as library for writing and compiling to javascript. It contains many functions that acts as templates
for common targets, like variable declaration, for loops, classes, and more. jscomp is useful for anything that involves generating javascript.##Installation
To install, simply use npm first
```
$ npm install jscomp
```Then require
```
var jsc = require('jscomp');
jscomp.std._while("x > 4", "consol.log(5)");
```