This project is no longer in development. A newer version of Conjure is in active development.
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:
- ✅ run next.js apps w/ express servers
- ✅ lint checks
- ✅ structured client assets
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"
}
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
hob start
Runs the app, meant for Production.
It does not transpile or otherwise prepare the app, since it should be pre-built.
hob compile
Similar to hob build
, but does not fire next build
, and does not minify or munge any transpiled code.
hob build
build
is meant to generate production-ready builds. This will:
- transpile styles
- generate client config
next build
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