http-metrics
Version:
The metrics of the HTTP/HTTPS request process
20 lines (12 loc) • 325 B
Plain Text
PATH := node_modules/.bin:$(PATH)
clean:
@rm -rf node_modules
install:
@npm install --registry=http://registry.npm.taobao.org/
test: install
@NODE_DEV=test mocha
test-cov: install
NODE_DEV=test istanbul cover node_modules/mocha/bin/_mocha && rm -rf ./coverage
lint: install
@gulp
.PHONY: test clean install lint