1.5.26 • Published 12 months ago

x4build v1.5.26

Weekly downloads
-
License
MIT
Repository
github
Last release
12 months ago

x4build

x4 solution builder

installation:

npm install -g x4build@latest

as an alternative, you can use npx ; use npx x4build instead of x4build.

CREATE a new project

	# create an empty electron project
	# this will create a new folder named test with all files to start a new electron project
	x4build create test --type=html
  • --type=<type> where <type> is one of

    • node: node project (client and server)
    • electron: electron project (desktop application)
    • html: html project (standard html project)
    • server: simple server (work in progress)
  • --overwrite: to overwrite existing project

BUILD an existing project

	# build an electron project and monitor the main.js file
	# kill & reload main.js when changing
	x4build build --serve --watch --hmr
  • --release: build the release
  • --debug: build in debug mode (default)
  • --serve: (html) serve files
  • --watch: watch for source modifications (automatic rebuild)
  • --hmr: (electron/html) Hot Module Reloading: reload the browser when build is done
  • --monitor=: (node) monitor for file modification kill and reload the node application

package.json

a new entry is recognized: x4build

  • postBuild: commands to start after compilation; some string parts are replaced: - ${srcdir}: source dir - ${outdir}: destination dir - @copy: simple copy command line(windows/linux compat)

  • external: don't bundle these elements (you must use npm install for them in the dist folder)

  • override: all options that will be sent to esbuild

example:

"x4build": {
	"postBuild": [ "@copy ${srcdir}/src/assets ${outdir}/assets" ],
	"external": [ "better-sqlite3" ],					
	"override": {
		"legalComments": true
	}
}
1.5.9

1 year ago

1.5.8

1 year ago

1.5.7

1 year ago

1.5.6

1 year ago

1.5.5

1 year ago

1.5.4

1 year ago

1.5.10

1 year ago

1.5.12

1 year ago

1.5.11

1 year ago

1.5.14

1 year ago

1.5.13

1 year ago

1.5.15

12 months ago

1.5.18

12 months ago

1.5.17

12 months ago

1.5.19

12 months ago

1.5.21

12 months ago

1.5.20

12 months ago

1.5.23

12 months ago

1.5.22

12 months ago

1.5.25

12 months ago

1.5.24

12 months ago

1.5.26

12 months ago

1.5.3

1 year ago

1.5.2

1 year ago

1.5.1

1 year ago

1.0.25

1 year ago

1.0.19

2 years ago

1.0.18

2 years ago

1.0.17

2 years ago

1.0.16

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.22

2 years ago

1.0.21

2 years ago

1.0.24

2 years ago

1.0.23

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago