UNPKG

express-query-parser

Version:

A parser helps you parse request for your express server

14 lines (12 loc) 237 B
import { build } from 'esbuild' const run = async () => { await build({ entryPoints: ['src/index.ts'], outfile: 'dist/index.js', platform: 'node', bundle: true, minify: true, external: ['express'] }) } run()