diff --git a/Readme.md b/Readme.md index e9e45b91..f39292d7 100644 --- a/Readme.md +++ b/Readme.md @@ -3,8 +3,8 @@ Fast, unopinionated, minimalist web framework for [node](http://nodejs.org). [![NPM version](https://badge.fury.io/js/express.svg)](http://badge.fury.io/js/express) - [![Build Status](https://travis-ci.org/visionmedia/express.svg?branch=master)](https://travis-ci.org/visionmedia/express) - [![Coverage Status](https://img.shields.io/coveralls/visionmedia/express.svg)](https://coveralls.io/r/visionmedia/express) + [![Build Status](https://travis-ci.org/strongloop/express.svg?branch=master)](https://travis-ci.org/strongloop/express) + [![Coverage Status](https://img.shields.io/coveralls/strongloop/express.svg)](https://coveralls.io/r/strongloop/express) [![Gittip](http://img.shields.io/gittip/dougwilson.svg)](https://www.gittip.com/dougwilson/) ```js @@ -65,11 +65,11 @@ app.listen(3000); ## More Information - * [Website and Documentation](http://expressjs.com/) stored at [visionmedia/expressjs.com](https://github.com/visionmedia/expressjs.com) + * [Website and Documentation](http://expressjs.com/) stored at [strongloop/expressjs.com](https://github.com/strongloop/expressjs.com) * Join #express on freenode * [Google Group](http://groups.google.com/group/express-js) for discussion * Follow [tjholowaychuk](http://twitter.com/tjholowaychuk) on twitter for updates - * Visit the [Wiki](http://github.com/visionmedia/express/wiki) + * Visit the [Wiki](http://github.com/strongloop/express/wiki) * [Русскоязычная документация](http://jsman.ru/express/) * Run express examples [online](https://runnable.com/express) @@ -77,7 +77,7 @@ app.listen(3000); Clone the Express repo, then install the dev dependencies to install all the example / test suite dependencies: - $ git clone git://github.com/visionmedia/express.git --depth 1 + $ git clone git://github.com/strongloop/express.git --depth 1 $ cd express $ npm install @@ -103,7 +103,7 @@ $ npm test ## Contributors - https://github.com/visionmedia/express/graphs/contributors + https://github.com/strongloop/express/graphs/contributors ## License diff --git a/examples/view-constructor/index.js b/examples/view-constructor/index.js index 000f419c..b09e1812 100644 --- a/examples/view-constructor/index.js +++ b/examples/view-constructor/index.js @@ -24,7 +24,7 @@ app.engine('md', function(str, options, fn){ }) // pointing to a particular github repo to load files from it -app.set('views', 'visionmedia/express'); +app.set('views', 'strongloop/express'); // register a new view constructor app.set('view', GithubView); @@ -37,7 +37,7 @@ app.get('/', function(req, res){ }) app.get('/Readme.md', function(req, res){ - // rendering a view from https://github.com/visionmedia/express/blob/master/Readme.md + // rendering a view from https://github.com/strongloop/express/blob/master/Readme.md res.render('Readme.md'); }) diff --git a/examples/web-service/index.js b/examples/web-service/index.js index f7c990ab..a81eb08c 100644 --- a/examples/web-service/index.js +++ b/examples/web-service/index.js @@ -73,7 +73,7 @@ var apiKeys = ['foo', 'bar', 'baz']; // these two objects will serve as our faux database var repos = [ - { name: 'express', url: 'http://github.com/visionmedia/express' } + { name: 'express', url: 'http://github.com/strongloop/express' } , { name: 'stylus', url: 'http://github.com/learnboost/stylus' } , { name: 'cluster', url: 'http://github.com/learnboost/cluster' } ]; diff --git a/package.json b/package.json index 6a5a5746..9c905a61 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "app", "api" ], - "repository": "visionmedia/express", + "repository": "strongloop/express", "license": "MIT", "dependencies": { "basic-auth": "1.0.0", diff --git a/test/acceptance/web-service.js b/test/acceptance/web-service.js index e0f744ad..5868e92d 100644 --- a/test/acceptance/web-service.js +++ b/test/acceptance/web-service.js @@ -53,7 +53,7 @@ describe('web-service', function(){ .get('/api/repos?api-key=foo') .expect('Content-Type', 'application/json; charset=utf-8') .expect(/"name":"express"/) - .expect(/"url":"http:\/\/github.com\/visionmedia\/express"/) + .expect(/"url":"http:\/\/github.com\/strongloop\/express"/) .expect(200, done) }) })