@conjurelabs/hob
v0.0.20
Published
Hobgoblin to do odd jobs for your apps
Downloads
94
Readme
Hob
Hobgoblin does chores in the background, helping your app run smoothly.
Hob is a framework of frameworks, and can be used to do the following:
- :white_check_mark: run next.js apps w/ express servers
- :white_check_mark: lint checks
- :white_check_mark: structured client assets
Setup
npm install --save @conjurelabs/hob
All commands, listed below, must be run via package.json
scripts.
e.g.
"scripts": {
"lint": "hob lint",
"dev": "hob dev",
"compile": "hob compile",
"build": "hob build",
"start": "hob start"
}
Dev
hob dev
dev
runs your dev environment.
It will transpile certain things, reset the db if you want, and then start up the express serve
Start
hob start
Runs the app, meant for Production.
It does not transpile or otherwise prepare the app, since it should be pre-built.
Compiling
hob compile
Similar to hob build
, but does not fire next build
, and does not minify or munge any transpiled code.
Building
hob build
build
is meant to generate production-ready builds. This will:
- transpile styles
- generate client config
next build
Lints
hob lint
This will run lints and coding style checks on your project. It uses defaults set by Hob.
You can override the defaults by adding the following to your project's root dir:
.eslintrc
.jscsrc