Precompiled Piping Server powered by bytenode and parcel
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 -p 8080:8080 nwtgck/bytenode-piping-server
Then, a Piping server is running on http://localhost:8080.
cd <this repo>
docker build -t myimage .
Here is an explanation how this project is built by npm run build
.
- Build piping-server: (to make
./piping-server/dist
) - Bundle
./piping-server
: (to make./dist
) - Compile
./dist/index.js
: (to make./dist/index.jsc
)