Package Exports
- hogget
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (hogget) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Hogget compiler
Installation
Requires Node.js v10 or higher. This package has no dependencies.
npm install hogget --globalCompiling
The Hogget compiler needs an input and output to run. To run from the terminal:
hogget --input program.hgg --output program.hgg.jsor, more concisely:
hogget -i program.hgg -o program.hgg.jsTo run programatically from Node.js:
import hogget from 'hogget'
const hoggetString = 'log("the answer is" add(12 30))'
console.log(hogget(hoggetString))The hogget package also exports a parse method.
Linting
To run from the terminal, either the --lint or -l option must be used:
hogget --lint --input program.hggTo run programatically from Node.js:
import { lint } from 'hogget'
const hoggetString =
'let myAdd = (a, b) => { let result = add(a, b); result; };'
console.log(lint(hoggetString))Formatting
To run from the terminal, either the --format or -f option must be used:
hogget --format --input program.hgg