Socket
Socket
Sign inDemoInstall

esbuild-plugin-solid

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

esbuild-plugin-solid

Solid's integration for ESBuild


Version published
Weekly downloads
6.1K
increased by0.05%
Maintainers
1
Weekly downloads
 
Created
Source

esbuild-plugin-solid

Plugin to compile solid-js jsx components with esbuild.

/!\ Disclaimer /!\

At the time of writing this, esbuild is not AS performant in term of dead code elimination as rollup is.

Rollup is the preferred way to bundle solid apps as it generally produce smaller code.

In my tests, a hello world :

  • rollup: 5.95kb
  • esbuild: 9.65kb

Install

solid-js and esbuild are peer dependencies

# For npm
npm install solid-js
npm install -D esbuild esbuild-plugin-solid

# For pnpm
pnpm add solid-js
pnpm add -D esbuild esbuild-plugin-solid

# For yarn
yarn add solid-js
yarn add -D esbuild esbuild-plugin-solid

Usage

Once installed you need to configure esbuild to use this plugin.

const { build } = require('esbuild');
const { solidPlugin } = require('esbuild-plugin-solid');

build({
  entryPoints: ['app.jsx'],
  bundle: true,
  outfile: 'out.js',
  plugins: [solidPlugin()],
}).catch(() => process.exit(1))

Configuration

There's no configuration as of now.

How it works

This is a 30 lines of code plugin. All it does is parse every import source code, check if JSX syntax is present using a dumb regex and transforming the file with @babel/core, @babel/preset-typescript and babel-preset-solid.

Out of the box it checks every /(t|j)sx?/ files and only transforms the one with JSX syntax in it.

Contributing

This package uses pnpm so you might want to install it if you don't have it.

Once done, you can just pnpm build & pnpm test to build & test your changes.

pnpm test will build a dumb module with the plugin and open a local web server serving the tests folder for you to check if things still work.

Keywords

FAQs

Package last updated on 13 May 2021

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