Skip to content

Precompiled Piping Server powered by bytenode and parcel

License

Notifications You must be signed in to change notification settings

nwtgck/bytenode-piping-server

Repository files navigation

bytenode-piping-server

CircleCI

Precompiled Piping Server powered by bytenode and parcel

Run

cd <this repo>
npm i
npm start

Then, you can access to http://localhost:8080.
All .js files are compiled to .jsc by npm run build, which is called by npm start.

Docker

Run with Docker

docker run -p 8080:8080 nwtgck/bytenode-piping-server

Then, a Piping server is running on http://localhost:8080.

Build by yourself

cd <this repo>
docker build -t myimage .

Build procedure

Here is an explanation how this project is built by npm run build.

  1. Build piping-server: (to make ./piping-server/dist)
  2. Bundle ./piping-server: (to make ./dist)
  3. Compile ./dist/index.js: (to make ./dist/index.jsc)