├── .changes ├── 16.0.0.md ├── 16.1.0.md ├── header.tpl.md └── unreleased │ └── .gitkeep ├── .changie.yaml ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .idea ├── .gitignore ├── modules.xml ├── rescript-nodejs.iml └── vcs.xml ├── .vscode ├── extensions.json └── settings.json ├── .yarn └── releases │ └── yarn-4.0.2.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── faq.md └── todo.md ├── examples ├── ReadFileByLine.res └── StreamTextToFile.res ├── lib └── js │ ├── examples │ ├── ReadFileByLine.bs.js │ └── StreamTextToFile.bs.js │ ├── src │ ├── Assert.bs.js │ ├── BigInt.bs.js │ ├── BinaryLike.bs.js │ ├── Buffer.bs.js │ ├── ChildProcess.bs.js │ ├── Cluster.bs.js │ ├── Console.bs.js │ ├── Crypto.bs.js │ ├── Dns.bs.js │ ├── Errors.bs.js │ ├── Event.bs.js │ ├── EventEmitter.bs.js │ ├── Exports.bs.js │ ├── Fs.bs.js │ ├── Global.bs.js │ ├── Http.bs.js │ ├── Http2.bs.js │ ├── Https.bs.js │ ├── Module.bs.js │ ├── Net.bs.js │ ├── Os.bs.js │ ├── Path.bs.js │ ├── PerfHooks.bs.js │ ├── Process.bs.js │ ├── QueryString.bs.js │ ├── Readline.bs.js │ ├── Stream.bs.js │ ├── StringBuffer.bs.js │ ├── StringDecoder.bs.js │ ├── StringEncoding.bs.js │ ├── Timers.bs.js │ ├── Tls.bs.js │ ├── Tty.bs.js │ ├── Url.bs.js │ ├── Util.bs.js │ ├── V8.bs.js │ ├── VM.bs.js │ ├── WorkerThreads.bs.js │ ├── Zlib.bs.js │ └── internal │ │ └── Internal__JsTypeReflection.bs.js │ └── test │ ├── atomic │ ├── BigInt.test.bs.js │ ├── BinaryLike.test.bs.js │ ├── Console.test.bs.js │ ├── EventEmitter.test.bs.js │ ├── Fs.test.bs.js │ ├── Global.test.bs.js │ ├── Path.test.bs.js │ ├── Stream.test.bs.js │ ├── Timers.test.bs.js │ └── Util.test.bs.js │ ├── codegen │ └── Readline.codegen.bs.js │ └── module │ ├── EventEmitterTestLib.bs.js │ └── StreamTestLib.bs.js ├── package.json ├── rescript.json ├── src ├── Assert.res ├── BigInt.res ├── BinaryLike.res ├── Buffer.res ├── ChildProcess.res ├── Cluster.res ├── Console.res ├── Crypto.res ├── Dns.res ├── Errors.res ├── Event.res ├── EventEmitter.res ├── Exports.res ├── Fs.res ├── Global.res ├── Http.res ├── Http2.res ├── Https.res ├── Module.res ├── Net.res ├── Os.res ├── Path.res ├── PerfHooks.res ├── Process.res ├── QueryString.res ├── Readline.res ├── Stream.res ├── StringBuffer.res ├── StringDecoder.res ├── StringEncoding.res ├── Timers.res ├── Tls.res ├── Tty.res ├── Url.res ├── Util.res ├── V8.res ├── VM.res ├── WorkerThreads.res ├── Zlib.res └── internal │ └── Internal__JsTypeReflection.res ├── test ├── atomic │ ├── BigInt.test.res │ ├── BinaryLike.test.res │ ├── Console.test.res │ ├── EventEmitter.test.res │ ├── Fs.test.res │ ├── Global.test.res │ ├── Path.test.res │ ├── Stream.test.res │ ├── Timers.test.res │ └── Util.test.res ├── codegen │ └── Readline.codegen.res └── module │ ├── EventEmitterTestLib.res │ └── StreamTestLib.res └── yarn.lock /.changes/16.0.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.changes/16.0.0.md -------------------------------------------------------------------------------- /.changes/16.1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.changes/16.1.0.md -------------------------------------------------------------------------------- /.changes/header.tpl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.changes/header.tpl.md -------------------------------------------------------------------------------- /.changes/unreleased/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.changie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.changie.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/rescript-nodejs.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.idea/rescript-nodejs.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /.yarn/releases/yarn-4.0.2.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.yarn/releases/yarn-4.0.2.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /docs/faq.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/docs/todo.md -------------------------------------------------------------------------------- /examples/ReadFileByLine.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/examples/ReadFileByLine.res -------------------------------------------------------------------------------- /examples/StreamTextToFile.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/examples/StreamTextToFile.res -------------------------------------------------------------------------------- /lib/js/examples/ReadFileByLine.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/examples/ReadFileByLine.bs.js -------------------------------------------------------------------------------- /lib/js/examples/StreamTextToFile.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/examples/StreamTextToFile.bs.js -------------------------------------------------------------------------------- /lib/js/src/Assert.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Assert.bs.js -------------------------------------------------------------------------------- /lib/js/src/BigInt.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/BigInt.bs.js -------------------------------------------------------------------------------- /lib/js/src/BinaryLike.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/BinaryLike.bs.js -------------------------------------------------------------------------------- /lib/js/src/Buffer.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Buffer.bs.js -------------------------------------------------------------------------------- /lib/js/src/ChildProcess.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/ChildProcess.bs.js -------------------------------------------------------------------------------- /lib/js/src/Cluster.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Cluster.bs.js -------------------------------------------------------------------------------- /lib/js/src/Console.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Console.bs.js -------------------------------------------------------------------------------- /lib/js/src/Crypto.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Crypto.bs.js -------------------------------------------------------------------------------- /lib/js/src/Dns.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Dns.bs.js -------------------------------------------------------------------------------- /lib/js/src/Errors.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Errors.bs.js -------------------------------------------------------------------------------- /lib/js/src/Event.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Event.bs.js -------------------------------------------------------------------------------- /lib/js/src/EventEmitter.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/EventEmitter.bs.js -------------------------------------------------------------------------------- /lib/js/src/Exports.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Exports.bs.js -------------------------------------------------------------------------------- /lib/js/src/Fs.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Fs.bs.js -------------------------------------------------------------------------------- /lib/js/src/Global.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Global.bs.js -------------------------------------------------------------------------------- /lib/js/src/Http.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Http.bs.js -------------------------------------------------------------------------------- /lib/js/src/Http2.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Http2.bs.js -------------------------------------------------------------------------------- /lib/js/src/Https.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Https.bs.js -------------------------------------------------------------------------------- /lib/js/src/Module.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Module.bs.js -------------------------------------------------------------------------------- /lib/js/src/Net.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Net.bs.js -------------------------------------------------------------------------------- /lib/js/src/Os.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Os.bs.js -------------------------------------------------------------------------------- /lib/js/src/Path.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Path.bs.js -------------------------------------------------------------------------------- /lib/js/src/PerfHooks.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/PerfHooks.bs.js -------------------------------------------------------------------------------- /lib/js/src/Process.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Process.bs.js -------------------------------------------------------------------------------- /lib/js/src/QueryString.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/QueryString.bs.js -------------------------------------------------------------------------------- /lib/js/src/Readline.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Readline.bs.js -------------------------------------------------------------------------------- /lib/js/src/Stream.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Stream.bs.js -------------------------------------------------------------------------------- /lib/js/src/StringBuffer.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/StringBuffer.bs.js -------------------------------------------------------------------------------- /lib/js/src/StringDecoder.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/StringDecoder.bs.js -------------------------------------------------------------------------------- /lib/js/src/StringEncoding.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/StringEncoding.bs.js -------------------------------------------------------------------------------- /lib/js/src/Timers.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Timers.bs.js -------------------------------------------------------------------------------- /lib/js/src/Tls.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Tls.bs.js -------------------------------------------------------------------------------- /lib/js/src/Tty.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Tty.bs.js -------------------------------------------------------------------------------- /lib/js/src/Url.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Url.bs.js -------------------------------------------------------------------------------- /lib/js/src/Util.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Util.bs.js -------------------------------------------------------------------------------- /lib/js/src/V8.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/V8.bs.js -------------------------------------------------------------------------------- /lib/js/src/VM.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/VM.bs.js -------------------------------------------------------------------------------- /lib/js/src/WorkerThreads.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/WorkerThreads.bs.js -------------------------------------------------------------------------------- /lib/js/src/Zlib.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/Zlib.bs.js -------------------------------------------------------------------------------- /lib/js/src/internal/Internal__JsTypeReflection.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/src/internal/Internal__JsTypeReflection.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/BigInt.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/BigInt.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/BinaryLike.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/BinaryLike.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/Console.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/Console.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/EventEmitter.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/EventEmitter.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/Fs.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/Fs.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/Global.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/Global.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/Path.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/Path.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/Stream.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/Stream.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/Timers.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/Timers.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/atomic/Util.test.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/atomic/Util.test.bs.js -------------------------------------------------------------------------------- /lib/js/test/codegen/Readline.codegen.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/codegen/Readline.codegen.bs.js -------------------------------------------------------------------------------- /lib/js/test/module/EventEmitterTestLib.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/module/EventEmitterTestLib.bs.js -------------------------------------------------------------------------------- /lib/js/test/module/StreamTestLib.bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/lib/js/test/module/StreamTestLib.bs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /rescript.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/rescript.json -------------------------------------------------------------------------------- /src/Assert.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Assert.res -------------------------------------------------------------------------------- /src/BigInt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/BigInt.res -------------------------------------------------------------------------------- /src/BinaryLike.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/BinaryLike.res -------------------------------------------------------------------------------- /src/Buffer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Buffer.res -------------------------------------------------------------------------------- /src/ChildProcess.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/ChildProcess.res -------------------------------------------------------------------------------- /src/Cluster.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Cluster.res -------------------------------------------------------------------------------- /src/Console.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Console.res -------------------------------------------------------------------------------- /src/Crypto.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Crypto.res -------------------------------------------------------------------------------- /src/Dns.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Dns.res -------------------------------------------------------------------------------- /src/Errors.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Errors.res -------------------------------------------------------------------------------- /src/Event.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Event.res -------------------------------------------------------------------------------- /src/EventEmitter.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/EventEmitter.res -------------------------------------------------------------------------------- /src/Exports.res: -------------------------------------------------------------------------------- 1 | type t 2 | -------------------------------------------------------------------------------- /src/Fs.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Fs.res -------------------------------------------------------------------------------- /src/Global.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Global.res -------------------------------------------------------------------------------- /src/Http.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Http.res -------------------------------------------------------------------------------- /src/Http2.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Http2.res -------------------------------------------------------------------------------- /src/Https.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Https.res -------------------------------------------------------------------------------- /src/Module.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Module.res -------------------------------------------------------------------------------- /src/Net.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Net.res -------------------------------------------------------------------------------- /src/Os.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Os.res -------------------------------------------------------------------------------- /src/Path.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Path.res -------------------------------------------------------------------------------- /src/PerfHooks.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/PerfHooks.res -------------------------------------------------------------------------------- /src/Process.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Process.res -------------------------------------------------------------------------------- /src/QueryString.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/QueryString.res -------------------------------------------------------------------------------- /src/Readline.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Readline.res -------------------------------------------------------------------------------- /src/Stream.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Stream.res -------------------------------------------------------------------------------- /src/StringBuffer.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/StringBuffer.res -------------------------------------------------------------------------------- /src/StringDecoder.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/StringDecoder.res -------------------------------------------------------------------------------- /src/StringEncoding.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/StringEncoding.res -------------------------------------------------------------------------------- /src/Timers.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Timers.res -------------------------------------------------------------------------------- /src/Tls.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Tls.res -------------------------------------------------------------------------------- /src/Tty.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Tty.res -------------------------------------------------------------------------------- /src/Url.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Url.res -------------------------------------------------------------------------------- /src/Util.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Util.res -------------------------------------------------------------------------------- /src/V8.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/V8.res -------------------------------------------------------------------------------- /src/VM.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/VM.res -------------------------------------------------------------------------------- /src/WorkerThreads.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/WorkerThreads.res -------------------------------------------------------------------------------- /src/Zlib.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/Zlib.res -------------------------------------------------------------------------------- /src/internal/Internal__JsTypeReflection.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/src/internal/Internal__JsTypeReflection.res -------------------------------------------------------------------------------- /test/atomic/BigInt.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/BigInt.test.res -------------------------------------------------------------------------------- /test/atomic/BinaryLike.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/BinaryLike.test.res -------------------------------------------------------------------------------- /test/atomic/Console.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/Console.test.res -------------------------------------------------------------------------------- /test/atomic/EventEmitter.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/EventEmitter.test.res -------------------------------------------------------------------------------- /test/atomic/Fs.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/Fs.test.res -------------------------------------------------------------------------------- /test/atomic/Global.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/Global.test.res -------------------------------------------------------------------------------- /test/atomic/Path.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/Path.test.res -------------------------------------------------------------------------------- /test/atomic/Stream.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/Stream.test.res -------------------------------------------------------------------------------- /test/atomic/Timers.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/Timers.test.res -------------------------------------------------------------------------------- /test/atomic/Util.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/atomic/Util.test.res -------------------------------------------------------------------------------- /test/codegen/Readline.codegen.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/codegen/Readline.codegen.res -------------------------------------------------------------------------------- /test/module/EventEmitterTestLib.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/module/EventEmitterTestLib.res -------------------------------------------------------------------------------- /test/module/StreamTestLib.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/test/module/StreamTestLib.res -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheSpyder/rescript-nodejs/HEAD/yarn.lock --------------------------------------------------------------------------------