Skip to content

Commit

Permalink
require node >= v6
Browse files Browse the repository at this point in the history
  • Loading branch information
edsu committed Aug 6, 2017
1 parent ebc0182 commit e977849
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
language: node_js
node_js:
- "5"
- "6"
- "7"
- "8"
Expand Down
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,21 @@
[![Build Status](https://secure.travis-ci.org/edsu/anon.svg)](http://travis-ci.org/edsu/anon)
[![Gitter chat](https://badges.gitter.im/edsu/anon.svg)](https://gitter.im/edsu/anon)

anon will watch Wikipedia for edits from a set of named IP ranges and will tweet when it notices one. It was inspired by [@parliamentedits](https://twitter.com/parliamentedits) and is used to make [@congressedits](https://twitter.com/congressedits) available. It is now being used a [community](#community) of users to post selected Wikipedia edits to Twitter.
anon will watch Wikipedia for edits from a set of named IP ranges and will tweet
when it notices one. It was inspired by
[@parliamentedits](https://twitter.com/parliamentedits) and is used to make
[@congressedits](https://twitter.com/congressedits) available. It is now being
used a [community](#community) of users to post selected Wikipedia edits to
Twitter.

anon can also send updates on [GNU Social / Mastodon](https://github.com/tootsuite/mastodon) (see below)
anon can also send updates on [GNU Social /
Mastodon](https://github.com/tootsuite/mastodon) (see below)

## Run

To run anon you will need to:

1. install [Node](http://nodejs.org)
1. install [Node](http://nodejs.org) (v6 or higher)
1. `git clone https://github.com/edsu/anon.git`
1. `cd anon`
1. `npm install`
Expand Down
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Tweet anonymous edits to Wikipedia from IP ranges.",
"homepage": "http://github.com/edsu/anon",
"license": "CC0-1.0",
"version": "0.0.3",
"version": "0.0.7",
"dependencies": {
"async": "0.9.x",
"ipv6": "3.x.x",
Expand All @@ -17,6 +17,11 @@
"mocha": "latest",
"chai": "latest"
},
{
"engines": {
"node": ">=6
}
},
"scripts": {
"test": "mocha --colors --reporter spec test.js",
"start": "node anon.js",
Expand Down

0 comments on commit e977849

Please sign in to comment.