This package has been deprecated

Author message:

Versions published prior to open sourcing are no longer supported

@dxos/esbuild-server
TypeScript icon, indicating that this package has built-in type declarations

2.29.0 • Public • Published

ESBuild Server

A fast dev-server and storybook built with esbuild.

CI

Usage

Run esbuild-server --help or esbuild-server <command> --help to list all commands.

esbuild-server <command>

Commands:
  esbuild-server build              Build the app for production.
  esbuild-server server             Start the dev server.
  esbuild-server book [stories...]  Start the dev server with a book of components.

Options:
  --help     Show help                                                 [boolean]
  --version  Show version number                                       [boolean]

Server

Specify and entry-point to serve an application:

esbuild-server server

To run the server with TLS support:

esbuild-server server --https

Initially this requires root permissions to create the dev TLC certificate.

Storybook

Stories are compatible with the Storybooks:

esbuild-server book

Each story file should export a set of components and optionally a default export with the title that will be displayed in the outline.

To build static books:

esbuild-server book --build

Config file

The config is automatically loaded from ./esbuild-server.config.js.

export interface Config {
  /**
   * List of entry points to bundle.
   * Those are then can be requested from the dev server.
   *
   * Read more: https://esbuild.github.io/api/#entry-points
   */
  entryPoints?: string[] | Record<string, string>

  /**
   * Directory to output production build to.
   */
  outdir?: string

  /**
   * Override esapp default settings for esbuild
   */
  overrides?: BuildOptions

  /**
   * Directory with static files to be served by the dev server.
   */
  staticDir?: string

  /**
   * Esbuild plugins: https://esbuild.github.io/plugins/.
   */
  plugins?: Plugin[]
}

Publishing

yarn publish --patch

Polyfills

Currently esbuild-server does not polyfill any of the node.js modules or globals. If your code is using them you need to manually include a plugin to add them.

Readme

Keywords

none

Package Sidebar

Install

npm i @dxos/esbuild-server

Weekly Downloads

144

Version

2.29.0

License

MIT

Unpacked Size

199 kB

Total Files

145

Last publish

Collaborators

  • zhenya-dxos
  • mykola-vrmchk
  • dxos-bot
  • richburdon
  • marik_d
  • wittjosiah