akpbd.blogg.se

Npm config help
Npm config help









npm config help

An alternative local configuration file can be specified with the -config option.

npm config help

These are usually named nodemon.json and can be located in the current working directory or in your home directory. Nodemon supports local and global configuration files. Whilst nodemon is running, if you need to manually restart your application, instead of stopping and restart nodemon, you can type rs with a carriage return, and nodemon will restart your process. If your script exits cleanly, nodemon will continue to monitor the directory (or directories) and restart the script if there are any changes. Nodemon was originally written to restart hanging processes such as web servers, but now supports apps that cleanly exit. Nodemon will also search for the scripts.start property in package.json (as of nodemon 1.1.x).Īlso check out the FAQ or issues for nodemon. Make sure to expose the following entries in your package.If you have a package.json file for your app, you can omit the main script entirely and nodemon will read the package.json for the main property and use that value as the app ( ref). Lib/index-browser.ts: export * from './QueryEngine' Lib/index.ts: export * from './QueryEngine' We will configure this in such as way that we can still modify our config file if needed,Īnd recompile the JavaScript file easily.įor this, add the following scripts to our package.json file: /./config/config-default.json`,ĪctorInitQuery => new QueryEngine(actorInitQuery), We will pre-compile our config file into a JavaScript file. In order to make the query engine start as fast as possible, If you want to learn more about what this config entry means,Ī dependency injection framework that Comunica uses.











Npm config help