npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ts-bytenode

v2.1.3

Published

Bytenode Compiler for Typescript.

Downloads

22

Readme

TS-Bytenode

A modified bytenode compiler for TypeScript projects using NodeJS.

Inspired by the original bytenode library, this tool instead compiles TypeScript code into V8 bytecode. It is expected to be used with NodeJS (eg: CommonJS modules), and also allows compilation for Electron processes.

Inspiration

The inspiration for this offshoot of bytenode came about from needing to reimplement a segmented build strategy for enterprise-level Electron applications. Since I needed separate production and development builds (as bytenode breaks debugging capabilities), any segmented system required extra build-tools and time to work with.

Now by integrating both the exposed TypeScript compilation API and piping this output to a modified bytenode implementation, the outputs can be modified with ease.

Install

npm install --save-dev ts-bytenode  # locally
npm install -g ts-bytnode           # globally

Similarities and Differences to bytenode

  • The underlying bytecode compilation and require augmentation remain the same, however custom file resolution can also be added to alter the desired extension and files that may be required.

  • Ultimately the current issues affecting bytenode also affect ts-bytenode. Since the compilation stage is the same, the output bytecode is at the whim of the V8 engine. For more information please see the (issues for bytenode)[https://github.com/bytenode/bytenode#known-issues-and-limitations].

  • One issue has been fixed unexpectedly by adding the TypeScript compilation stage. Since TypeScript polyfills Async/Await expressions, this results in Async Arrow Functions (and regular arrow functions) to not cause crashes in Puppeteer and Electron apps. This should be taken with a grain of salt as by setting target = "ES2017" or elsewise in your tsconfig.json, this will preserve Async/Await statements, thus reintroducing this issue.

  • TS-Bytenode typically expects any tsconfig.json projects to use the module = "CommonJS" and moduleResolution = "node". Since this package relies on the use of the NodeJS standard library, expecting other contexts is redundant.

Command-Line Interface

Usage: tsb [options] [command]

Options:
    -v, --version                           Output the package version.
    -h, --help                              Display help information.

Commands:
    run <filename>                          Launches a given bytecode file.
    compile [options] [filename]            Attempts compiling a given TS project to V8 bytecode.
    help [command]                          Display help for an optional command.

Examples:

$ tsb compile                               Compiles "tsconfig.json" found in the cwd.
$ tsb compile -c ./example                  Compiles the "tsconfig.json" found in the "./example" directory.
$ tsb compile -c ./example/tsconfig.json
$ tsb compile -m dev                        Output ".js" files instead of ".tsb".
$ tsb compile -m dev -d dev                 Output resulting development files into "$outDir/dev". Modifies the "tsconfig.js" output directory.
$ tsb compile -i hello.ts __*               Ignore files by basename pattern matching.

$ tsb run ./example                         Launches the compiled "tsb" file "./example/dist/index.tsb" (if no "index.js" file exist).
$ tsb run ./example/index.tsb

API

Alongside the CLI functionality, TS-Bytenode also exposes the internal compilation functionality. These can be accessed as.

import { TSB, TSC } from 'ts-bytenode';

TSB; // Bytenode functionality.
TSC; // TypeScript project compilation.

Of this functionality, the most important is the require modification.

require<T extends any>(fileName: string): T

Just like bytenode, any .tsb modules can now be required after calling the TSB.augment() method. All compiled outputs are wrapped as modules by default as this is the expected functionality required.

Also to note, any compiled .tsb files must be executed from the same NodeJS version they were compiled with. This process is the same as bytenode so any issues pertaining to running compiled outputs will be the similar to their results.

Acknowledgements

Much of this project could not be completed without taking inspiration from bytenode by @OsamaAbbas.

License

MIT