Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ebx

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ebx

Command Line Tool for Building and Running TypeScript Code

  • 0.0.8
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
93
decreased by-17.7%
Maintainers
1
Weekly downloads
 
Created
Source

EBX: for Building and Running TypeScript Code

Introduction

EBX stands for ES Module Build and Execute and works well with CommonJS (CJS).

EBX is a powerful tool designed to simplify the process of building and running TypeScript code within a Node.js environment. With a focus on ECMAScript Modules (ESM), EBX streamlines the development workflow, automating essential tasks while requiring zero configuration from developers.

EBX takes advantage of the lightning-fast build tool esbuild as its foundation.

The standout feature of EBX is its asynchronous type checking mechanism. Unlike traditional methods that halt the development process until type checking completes, our approach offloads type checking to a child process. This asynchronous approach frees developers to continue working on their code without interruptions.

Installation

You can install EBX globally using the following command:

npm install -g ebx

Usage

After installing EBX, you can use it from the command line as follows:

ebx [options] <filename>

Where <filename> is the name of the TypeScript file you want to build and run.

Options

EBX provides several options that you can use to customize the build and run process:

  • -w, --watch: Watch for changes in the source files and automatically rebuild when changes are detected.
  • -r, --run: Run the compiled program after a successful build.
  • -nc, --no-clean: Do not clean the build output directory before building.
  • -s, --sourcemap: Generate sourcemaps for the compiled JavaScript code.
  • --tsconfig <tsconfig>: Path to a custom TypeScript configuration file (tsconfig.json).
  • -m, --minify: Minify the output JavaScript code.
  • --ignore-types: Ignore type errors.

Example Usage

  1. Basic Build and Run:

    To build and run a TypeScript file named app.ts, use the following command:

    ebx -r app.ts
    

    To build ES Modules (ESM) just add "type": "module" in your package.json file

  2. Watching Changes:

    To watch for changes in the app.ts file and automatically rebuild and run it when changes occur:

    ebx -w -r app.ts
    
  3. Custom Configuration:

    To use a custom TypeScript configuration file named tsconfig.custom.json and generate sourcemaps:

    ebx -s --tsconfig tsconfig.custom.json -r app.ts
    
  4. Minification:

    To enable minification building and running app.ts:

    ebx -m app.ts
    

ES Modules

Modern JavaScript development often involves utilizing ES6 module syntax, which provides a more organized and efficient way to structure and manage code dependencies. To facilitate this, Node.js introduced support for ES Modules (ESM) in its ecosystem. By default, Node.js uses CommonJS (CJS) module syntax, but with the addition of the "type": "module" field in the package.json, it will transpile codes into ESM syntax.

Default output directory is dist, if you want to change to something else define main in package.json ex: "main": "lib/app.js" it will now compile and run app.js in lib directory

Conclusion

EBX simplifies the process of building and running TypeScript code by providing a command-line interface. Its customizable options make it a versatile tool for various development workflows, and its ability to watch for changes and run the compiled program makes it suitable for both development and testing purposes.

Keywords

FAQs

Package last updated on 17 Aug 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc