Skip to content
This repository was archived by the owner on Jun 2, 2024. It is now read-only.

Commit 89808e3

Browse files
committed
Release 0.3.0
1 parent 5ddf238 commit 89808e3

File tree

4 files changed

+46
-12
lines changed

4 files changed

+46
-12
lines changed

History.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,38 @@
11

2+
0.3.0 / 2014-02-27
3+
==================
4+
5+
* fix typo and dont sync not exists pkgs
6+
* use koa-middlewares
7+
* fix signed cookie not work on [email protected]; node --harmony-generators
8+
* fix opensearch test case
9+
* update koa bodyparser
10+
* logger.error(err) should send err stack email notice
11+
* json body parse limit and bug fix.
12+
* fix sync 404 reason not clear
13+
* all controllers to koa
14+
* controller/web/user.js to koa
15+
* change web connect to koa
16+
* use outputError
17+
* use yield exports.addPackageAndDist.call(this, next);
18+
* add end() when ws write end
19+
* fix yield coWrite
20+
* fix all the test of registry module.test.js
21+
* convert registry/module.js to koa type
22+
* fix auth middleware
23+
* finish registry user controller koa and update mm to support thunkify. fixed #196
24+
* change controllers/user.js to koa
25+
* thunkify all proxy
26+
* convert all middlewares to koa type
27+
* change regsitry sync to koa
28+
* addd koa-jsonp, koa-bodyparser, fix / controller
29+
* first koa run registry home page /
30+
* Merge pull request #212 from cnpm/fix-sync-404
31+
* return friendly 404 reason
32+
* Merge pull request #211 from cnpm/bug-fix
33+
* override json limit to default 10mb. fixed #209
34+
* fix #210 addPackageAndDist package version detect bug
35+
236
0.2.27 / 2014-02-19
337
==================
438

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cnpmjs.org
99

1010
## What is this?
1111

12-
Private npm registry and web for Enterprise, base on MySQL and [Simple Store Service](https://github.com/cnpm/cnpmjs.org/wiki/NFS-Guide).
12+
Private npm registry and web for Enterprise, base on [koa](http://koajs.com/), MySQL and [Simple Store Service](https://github.com/cnpm/cnpmjs.org/wiki/NFS-Guide).
1313

1414
@[JacksonTian](https://github.com/JacksonTian/) had a talk about [private npm](https://speakerdeck.com/jacksontian/qi-ye-ji-node-dot-jskai-fa).
1515

@@ -19,13 +19,13 @@ Private npm registry and web for Enterprise, base on MySQL and [Simple Store Ser
1919
## Install
2020

2121
```bash
22-
$ npm install
22+
$ npm install --registry=http://r.cnpmjs.org --disturl=http://dist.u.qiniudn.com
2323
```
2424

2525
## Usage
2626

2727
```js
28-
$ node dispatch.js
28+
$ node --harmony-generators dispatch.js
2929
```
3030

3131
## Guide
@@ -39,14 +39,14 @@ $ node dispatch.js
3939
$ git summary
4040

4141
project : cnpmjs.org
42-
repo age : 7 weeks
43-
active : 132 days
44-
commits : 315
45-
files : 88
42+
repo age : 3 months
43+
active : 145 days
44+
commits : 366
45+
files : 94
4646
authors :
47-
190 fengmk2 60.3%
48-
122 dead_horse 38.7%
49-
2 4simple 0.6%
47+
217 fengmk2 59.3%
48+
146 dead_horse 39.9%
49+
2 4simple 0.5%
5050
1 Alsotang 0.3%
5151
```
5252

docs/web/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## What is this?
88

9-
> Private npm registry and web for Enterprise, base on MySQL and [Simple Store Service](https://github.com/cnpm/cnpmjs.org/wiki/NFS-Guide).
9+
> Private npm registry and web for Enterprise, base on [koa](http://koajs.com/), MySQL and [Simple Store Service](https://github.com/cnpm/cnpmjs.org/wiki/NFS-Guide).
1010
1111
@[JacksonTian](https://github.com/JacksonTian/) had a talk about [private npm](https://speakerdeck.com/jacksontian/qi-ye-ji-node-dot-jskai-fa).
1212

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cnpmjs.org",
3-
"version": "0.2.27",
3+
"version": "0.3.0",
44
"description": "Private npm registry and web for Enterprise, base on MySQL and Simple Store Service",
55
"main": "index.js",
66
"scripts": {

0 commit comments

Comments
 (0)