iojs-nanomsg
Version:
nanomsg streams for iøjs
26 lines (18 loc) • 648 B
Plain Text
.PHONY: clean check test perf bench full
ALL:
npm i
check:
npm test
test:
npm test
clean:
rm -fr build && rm -rf node_modules
perf:
node perf/local_lat.js tcp://127.0.0.1:5555 1 100000& node perf/remote_lat.js tcp://127.0.0.1:5555 1 100000
node perf/local_thr.js tcp://127.0.0.1:5556 1 100000& node perf/remote_thr.js tcp://127.0.0.1:5556 1 100000
bench:
node perf/local_lat.js tcp://127.0.0.1:5555 10 1000& node perf/remote_lat.js tcp://127.0.0.1:5555 10 1000
node perf/local_thr.js tcp://127.0.0.1:5556 10 100000& node perf/remote_thr.js tcp://127.0.0.1:5556 10 100000
full:
rm -fr build && rm -rf node_modules
npm i && npm test