crafting
v0.0.60
Published
Data report composer
Downloads
78
Readme
Crafting
Licence: MIT
A library for backend engineers to craft reports without writing any frontend code...
Screenshot
Run - CLI
To try/test the library, from the folder of the downloaded reposotory, type in the terminal:
npm install
npm start
Then go to the browser: http://localhost
If your port 80 and/or 8080 is busy, then you can change the port used by crafting by changing the values of the environment variables:
- HTTP_PORT - default: 80
- WS_PORT - default: 8080
To specify the websocket host:
- WS_HOST
Run - Docker (optional)
You can also build and run a docker image, if you preffer to use docker instead:
docker build -t crafting .
docker run -p 80:80 -p 8080:8080 -d crafting
How to use
In your nodejs application, install the package through npm: npm install crafting
, or simply by defining the dependency in your package.json file:
{
"dependencies":
{
"superhero": "*"
}
}