dink-interface
v2.1.0
Published
Web interface for dink-dink dev server.
Downloads
2
Readme
Dink Dink Web Interface
Build Process:
npm install
to install project dependenciesnpm install webpack -g
if you don't have webpack available as a global moduleNODE_ENV=production webpack
to transpile and bundle application assets. Webpack uses the node env flag to switch between app entry points. This prevents regular builds from attempting to open a websocket with a dev server.
React Hot Loading && REST API Server
nodemon server/index.js
to start the development server. Default port is 9090. Port can be changed with PORT env variable.node server/dev-server.js
to start the webpack dev server with react hot loader.