https://github.com/websockets/ws
Raw File
Tip revision: 3918e11d200e574beca9d5abd61fbe3020434aed authored by Luigi Pinca on 08 February 2017, 13:32:12 UTC
[dist] 2.0.3
Tip revision: 3918e11
appveyor.yml
environment:
  matrix:
    - nodejs_version: "7"
    - nodejs_version: "6"
    - nodejs_version: "4"
platform:
  - x86
  - x64
matrix:
  fast_finish: true
install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install
test_script:
  - node --version
  - npm --version
  - npm test
build: off
back to top