Skip to content

Commit c6a80dc

Browse files
authored
Merge pull request #7 from oxygens/master
appveyor windows build badge
2 parents 68b3e89 + 85f164e commit c6a80dc

File tree

3 files changed

+17
-2
lines changed

3 files changed

+17
-2
lines changed

README.MD

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Bidirectional JSON-RPC 2.0 server and client
22

33
[![Version npm](https://img.shields.io/npm/v/ws.svg)](https://www.npmjs.com/package/jsonrpc-bidirectional)
4-
[![Build Status](https://travis-ci.org/oxygens/jsonrpc-bidirectional.svg?branch=master)](https://travis-ci.org/oxygens/jsonrpc-bidirectional)
4+
[![Linux build](https://travis-ci.org/oxygens/jsonrpc-bidirectional.svg?branch=master)](https://travis-ci.org/oxygens/jsonrpc-bidirectional)
5+
[![Windows Build](https://ci.appveyor.com/api/projects/status/github/oxygens/jsonrpc-bidirectional?branch=master&svg=true)](https://ci.appveyor.com/project/oxygens/jsonrpc-bidirectional)
56

67
A main goal of this project is to have the JSON-RPC server and client support __bidirectional JSON-RPC requests over a single WebSocket connection.__
78

appveyor.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: "7.8"
4+
platform:
5+
- x86
6+
- x64
7+
matrix:
8+
fast_finish: true
9+
install:
10+
- ps: Install-Product node $env:nodejs_version $env:platform
11+
- npm install
12+
test_script:
13+
- npm run test
14+
build: off

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jsonrpc-bidirectional",
33
"description": "Bidirectional JSONRPC over web sockets or HTTP with extensive plugin support.",
4-
"version": "2.4.0",
4+
"version": "2.4.1",
55
"scripts": {
66
"build": "node build.js",
77
"test": "node tests/main.js",

0 commit comments

Comments
 (0)