Skip to content

Commit 1c07368

Browse files
author
davidmarkclements
committed
rename
1 parent cf2ad71 commit 1c07368

File tree

5 files changed

+14
-11
lines changed

5 files changed

+14
-11
lines changed

LICENSE

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 nearform
3+
Copyright (c) 2016 Matteo Collina
4+
Copyright (c) 2016 David Mark Clements
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
1-
# nesone
1+
# anger
22
pub-sub tester for Nes
3+
4+
## Status: Experimental

nesone.js anger.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const Histogram = require('native-hdr-histogram')
66
const steed = require('steed')
77
const Client = nes.Client
88

9-
function nesone (opts) {
9+
function anger (opts) {
1010
const tracker = new EE()
1111
const sender = new Client(opts.url)
1212
sender.connect({}, noop)
@@ -99,4 +99,4 @@ function histAsObj (hist, total) {
9999
function noop () {
100100
}
101101

102-
module.exports = nesone
102+
module.exports = anger

package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
2-
"name": "nesone",
2+
"name": "anger",
33
"version": "0.0.1",
44
"description": "pub-sub tester for Nes",
5-
"main": "nesone.js",
5+
"main": "anger.js",
66
"scripts": {
77
"test": "standard && tap test/*test.js"
88
},
99
"precommit": "test",
1010
"repository": {
1111
"type": "git",
12-
"url": "git+https://github.com/nearform/nesone.git"
12+
"url": "git+https://github.com/nearform/anger.git"
1313
},
1414
"keywords": [
1515
"pub",
@@ -24,9 +24,9 @@
2424
"author": "Matteo Collina <[email protected]>",
2525
"license": "MIT",
2626
"bugs": {
27-
"url": "https://github.com/nearform/nesone/issues"
27+
"url": "https://github.com/nearform/anger/issues"
2828
},
29-
"homepage": "https://github.com/nearform/nesone#readme",
29+
"homepage": "https://github.com/nearform/anger#readme",
3030
"devDependencies": {
3131
"hapi": "^13.4.1",
3232
"nes": "^6.2.1",

test/basic.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict'
22

33
const t = require('tap')
4-
const nesone = require('..')
4+
const anger = require('..')
55

66
require('./server')((err, server) => {
77
t.error(err)
@@ -11,7 +11,7 @@ require('./server')((err, server) => {
1111
path: '/h'
1212
}
1313

14-
const instance = nesone({
14+
const instance = anger({
1515
url: server.info.uri,
1616
subscription: '/greet',
1717
connections: 10,

0 commit comments

Comments
 (0)