max tokens

~1772 tokens

├── .github
    └── workflows
    │   └── test.yml
├── .gitignore
├── .npmrc
├── .vscode
    └── settings.json
├── LICENSE
├── README.md
├── benchmark
    └── simple
    │   ├── README.md
    │   └── slow-function.js
├── examples
    ├── electron-hello-world
    │   ├── README.md
    │   ├── index.html
    │   ├── main-window.src.js
    │   ├── main.js
    │   └── package.json
    ├── express-hello-world
    │   ├── README.md
    │   ├── package.json
    │   └── server.js
    ├── no-module-flag
    │   ├── README.md
    │   ├── main.js
    │   └── script.js
    └── nwjs-hello-world
    │   ├── README.md
    │   ├── index.html
    │   ├── main-window.src.js
    │   └── package.json
├── lib
    ├── cli.js
    ├── index.d.ts
    └── index.js
├── package.json
└── test
    ├── index.test.js
    └── testfile.js


/.github/workflows/test.yml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/.github/workflows/test.yml


--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/.gitignore


--------------------------------------------------------------------------------
/.npmrc:
--------------------------------------------------------------------------------
1 | package-lock=false
2 | 


--------------------------------------------------------------------------------
/.vscode/settings.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/.vscode/settings.json


--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/LICENSE


--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/README.md


--------------------------------------------------------------------------------
/benchmark/simple/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/benchmark/simple/README.md


--------------------------------------------------------------------------------
/benchmark/simple/slow-function.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/benchmark/simple/slow-function.js


--------------------------------------------------------------------------------
/examples/electron-hello-world/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/electron-hello-world/README.md


--------------------------------------------------------------------------------
/examples/electron-hello-world/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/electron-hello-world/index.html


--------------------------------------------------------------------------------
/examples/electron-hello-world/main-window.src.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/electron-hello-world/main-window.src.js


--------------------------------------------------------------------------------
/examples/electron-hello-world/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/electron-hello-world/main.js


--------------------------------------------------------------------------------
/examples/electron-hello-world/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/electron-hello-world/package.json


--------------------------------------------------------------------------------
/examples/express-hello-world/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/express-hello-world/README.md


--------------------------------------------------------------------------------
/examples/express-hello-world/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/express-hello-world/package.json


--------------------------------------------------------------------------------
/examples/express-hello-world/server.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/express-hello-world/server.js


--------------------------------------------------------------------------------
/examples/no-module-flag/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/no-module-flag/README.md


--------------------------------------------------------------------------------
/examples/no-module-flag/main.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/no-module-flag/main.js


--------------------------------------------------------------------------------
/examples/no-module-flag/script.js:
--------------------------------------------------------------------------------
1 | 'use strict';
2 | 
3 | console.log('Hello World!');


--------------------------------------------------------------------------------
/examples/nwjs-hello-world/README.md:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/nwjs-hello-world/README.md


--------------------------------------------------------------------------------
/examples/nwjs-hello-world/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/nwjs-hello-world/index.html


--------------------------------------------------------------------------------
/examples/nwjs-hello-world/main-window.src.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/nwjs-hello-world/main-window.src.js


--------------------------------------------------------------------------------
/examples/nwjs-hello-world/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/examples/nwjs-hello-world/package.json


--------------------------------------------------------------------------------
/lib/cli.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/lib/cli.js


--------------------------------------------------------------------------------
/lib/index.d.ts:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/lib/index.d.ts


--------------------------------------------------------------------------------
/lib/index.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/lib/index.js


--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/package.json


--------------------------------------------------------------------------------
/test/index.test.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/test/index.test.js


--------------------------------------------------------------------------------
/test/testfile.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/bytenode/bytenode/HEAD/test/testfile.js


--------------------------------------------------------------------------------