Skip to content

Commit d370506

Browse files
committed
Initial commit.
0 parents  commit d370506

File tree

3 files changed

+86
-0
lines changed

3 files changed

+86
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

README.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# node-mediawiki-express
2+
[![NPM][NPM1]][NPM2]
3+
4+
[![Build Status][1]][2] [![dependency status][3]][4] [![dev dependency status][5]][6]
5+
6+
The node `mediawiki-express` package uses the `php-embed` package to embed
7+
mediawiki within an node express server.
8+
9+
# USAGE
10+
11+
```js
12+
// XXX write me
13+
```
14+
15+
16+
# INSTALLING
17+
18+
You can use [`npm`](https://github.com/isaacs/npm) to download and install:
19+
20+
* The latest `mediawiki-express` package: `npm install mediawiki-express`
21+
22+
* GitHub's `master` branch: `npm install https://github.com/cscott/node-mediawiki-express/tarball/master`
23+
24+
25+
# TESTING
26+
27+
[mocha](https://github.com/visionmedia/mocha) is required to run unit tests.
28+
29+
npm install mocha
30+
npm test
31+
32+
33+
# CONTRIBUTORS
34+
35+
* [C. Scott Ananian](https://github.com/cscott)
36+
37+
# RELATED PROJECTS
38+
39+
* [`node-php-embed`](https://github.com/cscott/node-php-embed)
40+
41+
# LICENSE
42+
Copyright (c) 2015 C. Scott Ananian.
43+
44+
`node-mediawiki-express` is licensed using the same
45+
[license](https://github.com/wikimedia/mediawiki/blob/master/COPYING)
46+
as mediawiki itself.
47+
48+
[NPM1]: https://nodei.co/npm/mediawiki-express.png
49+
[NPM2]: https://nodei.co/npm/mediawiki-express/
50+
51+
[1]: https://travis-ci.org/cscott/node-mediawiki-express.png
52+
[2]: https://travis-ci.org/cscott/node-mediawiki-express
53+
[3]: https://david-dm.org/cscott/node-mediawiki-express.png
54+
[4]: https://david-dm.org/cscott/node-mediawiki-express
55+
[5]: https://david-dm.org/cscott/node-mediawiki-express/dev-status.png
56+
[6]: https://david-dm.org/cscott/node-mediawiki-express#info=devDependencies

package.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "mediawiki-express",
3+
"version": "0.0.0",
4+
"description": "An installation of mediawiki invoked from node.js/express.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/cscott/node-mediawiki-express.git"
12+
},
13+
"keywords": [
14+
"mediawiki",
15+
"wikipedia",
16+
"express",
17+
"php"
18+
],
19+
"author": "C. Scott Ananian",
20+
"license": "GPL-2.0+",
21+
"bugs": {
22+
"url": "https://github.com/cscott/node-mediawiki-express/issues"
23+
},
24+
"homepage": "https://github.com/cscott/node-mediawiki-express#readme",
25+
"dependencies": {
26+
"express": "~4.13.3",
27+
"php-embed": "~0.0.3"
28+
}
29+
}

0 commit comments

Comments
 (0)