diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8a83939efa5..87e52bb31c4 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -8,7 +8,7 @@ We welcome any type of contribution, not only code. You can help with - QA: file bug reports, the more details you can give the better (e.g. screenshots with the console open) - Marketing: writing blog posts, howto's, printing stickers, ... - Community: presenting the project at meetups, organizing a dedicated meetup for the local community, ... -- Code: take a look at the [open issues](https://github.com/Romakita/tsed/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. +- Code: take a look at the [open issues](https://github.com/TypedProject/ts-express-decorators/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. - Money: we welcome financial contributions in full transparency on our [open collective](https://opencollective.com/tsed). ## Your First Contribution @@ -28,7 +28,7 @@ We also welcome financial contributions in full transparency on our open collect ## Questions -If you have any questions, create an [issue](https://github.com/Romakita/tsed/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at hello@tsed.opencollective.com. +If you have any questions, create an [issue](https://github.com/TypedProject/ts-express-decorators/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at hello@tsed.opencollective.com. ## How to work on Ts.ED ### Setup @@ -128,7 +128,7 @@ npm run doc:serve ## Credits ### Contributors - + ### Backers diff --git a/docs/.vuepress/config.js b/docs/.vuepress/config.js index 59d70c92689..9270db9fc56 100644 --- a/docs/.vuepress/config.js +++ b/docs/.vuepress/config.js @@ -5,7 +5,7 @@ module.exports = { theme: "tsed", themeConfig: { version: require("../../package").version, - repo: "romakita/ts-express-decorators", + repo: "TypedProject/ts-express-decorators", gitterUrl: "https://gitter.im/Tsed-io/community", editLinks: true, docsDir: "docs", diff --git a/docs/configuration.md b/docs/configuration.md index 041ff76c262..4d4d84027c2 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -154,7 +154,7 @@ export class Server extends ServerLoader { ### HTTPs configuration -You see the example [projet HTTPs](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-https) +You see the example [projet HTTPs](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-https) ## Logger diff --git a/docs/contributing.md b/docs/contributing.md index 777db7552dc..11ad9ebb9f3 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -33,7 +33,7 @@ We welcome any type of contribution, not only code. You can help with - QA: file bug reports, the more details you can give the better (e.g. screenshots with the console open) - Marketing: writing blog posts, howto's, printing stickers, ... - Community: presenting the project at meetups, organizing a dedicated meetup for the local community, ... -- Code: take a look at the [open issues](https://github.com/Romakita/tsed/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. +- Code: take a look at the [open issues](https://github.com/TypedProject/ts-express-decorators/blob/master/issues). Even if you can't write code, commenting on them, showing that you care about a given issue matters. It helps us triage them. - Money: we welcome financial contributions in full transparency on our [open collective](https://opencollective.com/tsed). ## Your First Contribution @@ -53,7 +53,7 @@ We also welcome financial contributions in full transparency on our open collect ## Questions -If you have any questions, create an [issue](https://github.com/Romakita/tsed/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at hello@tsed.opencollective.com. +If you have any questions, create an [issue](https://github.com/TypedProject/ts-express-decorators/blob/master/issue) (protip: do a quick search first to see if someone else didn't ask the same question before!). You can also reach us at hello@tsed.opencollective.com. ## How to work on Ts.ED ### Setup diff --git a/docs/docs/converters.md b/docs/docs/converters.md index b3fe4b68721..6272c065f7e 100644 --- a/docs/docs/converters.md +++ b/docs/docs/converters.md @@ -138,9 +138,9 @@ class User { The Converters service relies on a subservice set to convert the following types: -- Basics: [String, Number et Boolean](https://github.com/Romakita/ts-express-decorators/blob/master/src/common/converters/components/PrimitiveConverter.ts), -- Objects: [Date](https://github.com/Romakita/ts-express-decorators/blob/master/src/common/converters/components/DateConverter.ts) et [Symbol](https://github.com/Romakita/ts-express-decorators/blob/master/src/common/converters/components/SymbolConverter.ts), -- Collections: [Array](https://github.com/Romakita/ts-express-decorators/blob/master/src/common/converters/components/ArrayConverter.ts), [Map](https://github.com/Romakita/ts-express-decorators/blob/master/src/common/converters/components/MapConverter.ts) et [Set](https://github.com/Romakita/ts-express-decorators/blob/master/src/common/converters/components/SetConverter.ts). +- Basics: [String, Number et Boolean](https://github.com/TypedProject/ts-express-decorators/blob/master/packages/common/src/converters/components/PrimitiveConverter.ts), +- Objects: [Date](https://github.com/TypedProject/ts-express-decorators/blob/master/packages/common/src/converters/components/DateConverter.ts) et [Symbol](https://github.com/TypedProject/ts-express-decorators/blob/master/packages/common/src/converters/components/SymbolConverter.ts), +- Collections: [Array](https://github.com/TypedProject/ts-express-decorators/blob/master/packages/common/src/converters/components/ArrayConverter.ts), [Map](https://github.com/TypedProject/ts-express-decorators/blob/master/packages/common/src/converters/components/MapConverter.ts) et [Set](https://github.com/TypedProject/ts-express-decorators/blob/master/packages/common/src/converters/components/SetConverter.ts). > Set and Map types will be converted into an JSON object (instead of Array). @@ -350,4 +350,4 @@ console.log(result) // TaskModel {unknowProperty: "test"} ::: tip If you have disabled `strict` validation at the global level, you can use the `@ModelStrict(true)` decorator to enable validation for a specific model. -::: \ No newline at end of file +::: diff --git a/docs/docs/migration.md b/docs/docs/migration.md index 1e665e9c541..c07d5a3a955 100644 --- a/docs/docs/migration.md +++ b/docs/docs/migration.md @@ -1,21 +1,4 @@ # Migration -See release note on Github: https://github.com/Romakita/ts-express-decorators/releases +See release note on Github: https://github.com/TypedProject/ts-express-decorators/releases -## From v1.x to v2.x - -- ServerLoader.isAuthenticated hooks is removed. Use ServerLoader.$onAuth hook instead of. -- Interface IPromise is removed. Use Promise instead of. -- Interface ICrud is removed. -- ServerLoader.AcceptMime() is removed. Use GlobalAcceptMimesMiddleware instead of (see documentation https://tsed.io#/docs/middlewares/global-middleware). -- Update [ts-log-debug](https://TypedProject.github.io/ts-log-debug) to the new major version. - -## From v1.3 or under to v1.4 - -The `@types/express` modules dependency has move to devDependencies. So you can have a compilation error with TypeScript. -To resolve it, just run `npm install --save @types/express`. - -If we used the InjectorService. Make you sure we have this in your code: - -* `InjectorService.invoke(target)` has changed to `InjectorService.invoke(target): T`. -* `InjectorService.get(target)` has changed to `InjectorService.get(target): T`. diff --git a/docs/getting-started.md b/docs/getting-started.md index 59e65df0555..a0eab2a9863 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -7,7 +7,7 @@ otherTopics: true # Getting started -You can start your project from the [getting started project](https://github.com/Romakita/ts-express-decorators/tree/master/integration/getting-started). +You can start your project from the [getting started project](https://github.com/TypedProject/ts-express-decorators/tree/master/integration/getting-started). ## Installation from scratch diff --git a/docs/readme.md b/docs/readme.md index 74782d890ba..212b6018c4f 100644 --- a/docs/readme.md +++ b/docs/readme.md @@ -10,7 +10,7 @@ meta: actionText: Get Started → actionLink: /getting-started.html repoText: Github -repoLink: https://github.com/romakita/ts-express-decorators +repoLink: https://github.com/TypedProject/ts-express-decorators heroText: TS.ED heroDescription: A TypeScript Framework on top of Express heroTerms: diff --git a/docs/tutorials/README.md b/docs/tutorials/README.md index 489259655de..7cd38594812 100644 --- a/docs/tutorials/README.md +++ b/docs/tutorials/README.md @@ -2,7 +2,7 @@ ## Starters -- [Quick start project](https://github.com/Romakita/ts-express-decorators/tree/production/integration/getting-started) +- [Quick start project](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/getting-started) - [Node Api Starter](https://github.com/scopsy/node-typescript-starter) by [Scopsy](https://github.com/scopsy) ## Demo @@ -11,29 +11,29 @@ Some examples are available along these links : **Projects example for v5.x.x** -- [Basic usages](https://github.com/Romakita/ts-express-decorators/tree/production/integration/getting-started) -- [Https](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-https) -- [A SquareGame with SocketIO](https://github.com/Romakita/ts-express-decorators/tree/production/integration/socketio) -- [Authentication with Passport.js](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-passport) -- [Mongoose & Swagger](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-mongoose) -- [TypeORM](https://github.com/Romakita/ts-express-decorators/tree/production/integration/typeorm) -- [Multer](https://github.com/Romakita/ts-express-decorators/tree/production/integration/multer) +- [Basic usages](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/getting-started) +- [Https](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-https) +- [A SquareGame with SocketIO](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/socketio) +- [Authentication with Passport.js](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-passport) +- [Mongoose & Swagger](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-mongoose) +- [TypeORM](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/typeorm) +- [Multer](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/multer) **Projects examples for v4.x.x** -- [Basic usages](https://github.com/Romakita/ts-express-decorators/tree/production/integration/getting-started) -- [Https](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-https) -- [Authentication with Passport.js](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-passport) -- [Mongoose & Swagger](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-mongoose) -- [TypeORM](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-typeorm) +- [Basic usages](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/getting-started) +- [Https](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-https) +- [Authentication with Passport.js](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-passport) +- [Mongoose & Swagger](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-mongoose) +- [TypeORM](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-typeorm) **Projects examples for v2.0.0 and more** -- [Basic usages](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-basic) -- [Https](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-https) -- [Service declaration](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-services) -- [Authentication with Passport.js](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-passport) -- [Mongoose and deserialization](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-mongoose) -- [Swagger UI](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-swagger) -- [Testing](https://github.com/Romakita/example-ts-express-decorator/tree/2.0.0/example-testing) +- [Basic usages](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-basic) +- [Https](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-https) +- [Service declaration](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-services) +- [Authentication with Passport.js](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-passport) +- [Mongoose and deserialization](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-mongoose) +- [Swagger UI](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-swagger) +- [Testing](https://github.com/TypedProject/example-ts-express-decorator/tree/2.0.0/example-testing) diff --git a/docs/tutorials/mongoose.md b/docs/tutorials/mongoose.md index fd30041b363..c9200bb7a9f 100644 --- a/docs/tutorials/mongoose.md +++ b/docs/tutorials/mongoose.md @@ -396,5 +396,5 @@ export class MyService { ``` ::: tip -You can find a working example on [Mongoose & Swagger here](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-mongoose). +You can find a working example on [Mongoose & Swagger here](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-mongoose). ::: diff --git a/docs/tutorials/multer.md b/docs/tutorials/multer.md index 5aa820174e1..25760336a9c 100644 --- a/docs/tutorials/multer.md +++ b/docs/tutorials/multer.md @@ -100,5 +100,5 @@ Swagger spec (v2.0) doesn't support multiple files. ::: ::: tip -You can find a working example on [Multer here](https://github.com/Romakita/ts-express-decorators/tree/production/integration/multer). +You can find a working example on [Multer here](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/multer). ::: diff --git a/docs/tutorials/passport.md b/docs/tutorials/passport.md index 2179b8f13d6..3aa1fed21f0 100644 --- a/docs/tutorials/passport.md +++ b/docs/tutorials/passport.md @@ -360,5 +360,5 @@ export class PassportCtrl { ``` ::: tip -You can find a working example on [Passport.js here](https://github.com/Romakita/example-ts-express-decorator/tree/4.0.0/example-passport). -::: \ No newline at end of file +You can find a working example on [Passport.js here](https://github.com/TypedProject/example-ts-express-decorator/tree/4.0.0/example-passport). +::: diff --git a/docs/tutorials/socket-io.md b/docs/tutorials/socket-io.md index 69b58f479b3..6daabb11cdc 100644 --- a/docs/tutorials/socket-io.md +++ b/docs/tutorials/socket-io.md @@ -13,7 +13,7 @@ Socket.io enable real-time bidirectional event-based communication. It works on ## Example -A complete example is available [here](https://github.com/Romakita/ts-express-decorators/tree/production/integration/socketio). +A complete example is available [here](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/socketio). ## Installation diff --git a/docs/tutorials/throw-http-exceptions.md b/docs/tutorials/throw-http-exceptions.md index 6a6dc9cd711..b83a2c99044 100644 --- a/docs/tutorials/throw-http-exceptions.md +++ b/docs/tutorials/throw-http-exceptions.md @@ -1,6 +1,6 @@ # Throw HTTP Exceptions -You can use [ts-httpexceptions](https://github.com/Romakita/ts-httpexceptions) or similar module to throw an http exception. +You can use [ts-httpexceptions](https://github.com/TypedProject/ts-httpexceptions) or similar module to throw an http exception. All exception will be intercepted by the [Global error handler](/docs/middlewares/override/global-error-handler.md) and are sent to the client. diff --git a/docs/tutorials/typeorm.md b/docs/tutorials/typeorm.md index b030702698d..5e967c3e88f 100644 --- a/docs/tutorials/typeorm.md +++ b/docs/tutorials/typeorm.md @@ -164,5 +164,5 @@ export class UsersCtrl { ``` ::: tip -You can find a working example on [TypeORM here](https://github.com/Romakita/ts-express-decorators/tree/production/integration/typeorm). +You can find a working example on [TypeORM here](https://github.com/TypedProject/ts-express-decorators/tree/production/integration/typeorm). ::: diff --git a/integration/getting-started/readme.md b/integration/getting-started/readme.md index ab702dfc545..559a684b11b 100644 --- a/integration/getting-started/readme.md +++ b/integration/getting-started/readme.md @@ -2,7 +2,7 @@ Here an example to configure your server and how to create your first controller. -See [Ts.ED](https://romakita.github.io/ts-express-decorators) project for more information. +See [Ts.ED](https://tsed.io) project for more information. ## Install @@ -16,4 +16,4 @@ npm install ``` npm start -``` \ No newline at end of file +``` diff --git a/integration/multer/readme.md b/integration/multer/readme.md index 4b5b5e9c0dc..5ab0d501f2e 100644 --- a/integration/multer/readme.md +++ b/integration/multer/readme.md @@ -2,7 +2,7 @@ Here an example to configure your server and how to create your first controller. -See [Ts.ED](https://romakita.github.io/ts-express-decorators) project for more information. +See [Ts.ED](https://tsed.io) project for more information. ## Install diff --git a/integration/typeorm/readme.md b/integration/typeorm/readme.md index 51fd591c586..5e94caec0fe 100644 --- a/integration/typeorm/readme.md +++ b/integration/typeorm/readme.md @@ -2,7 +2,7 @@ Here an example to configure your server and how to create your first controller. -See [Ts.ED](https://romakita.github.io/ts-express-decorators) project for more information. +See [Ts.ED](https://tsed.io/) project for more information. ## Install diff --git a/package.json b/package.json index 89a9ed80ca2..c01aa559351 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ }, "repository": { "type": "git", - "url": "https://github.com/Romakita/ts-express-decorators.git" + "url": "https://github.com/TypedProject/ts-express-decorators.git" }, "keywords": [ "Express", @@ -58,7 +58,7 @@ "author": "Romain Lenzotti", "license": "MIT", "bugs": { - "url": "https://github.com/Romakita/ts-express-decorators/issues" + "url": "https://github.com/TypedProject/ts-express-decorators/issues" }, "homepage": "http://tsed.io/", "dependencies": { @@ -147,4 +147,4 @@ "packages": "packages", "test": "test" } -} \ No newline at end of file +} diff --git a/packages/ajv/readme.md b/packages/ajv/readme.md index 484e478075b..be7c66fffee 100644 --- a/packages/ajv/readme.md +++ b/packages/ajv/readme.md @@ -96,7 +96,7 @@ export class Server extends ServerLoader { ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/common/package.json b/packages/common/package.json index 596b407406a..6631abfe31b 100644 --- a/packages/common/package.json +++ b/packages/common/package.json @@ -30,12 +30,12 @@ "author": "Romain Lenzotti", "license": "MIT", "bugs": { - "url": "https://github.com/Romakita/ts-express-decorators/issues" + "url": "https://github.com/TypedProject/ts-express-decorators/issues" }, "homepage": "http://tsed.io/", "repository": { "type": "git", - "url": "https://github.com/Romakita/ts-express-decorators.git" + "url": "https://github.com/TypedProject/ts-express-decorators.git" }, "dependencies": { "@types/json-schema": "^6.0.1", diff --git a/packages/common/readme.md b/packages/common/readme.md index e097927bd47..06f287365b1 100644 --- a/packages/common/readme.md +++ b/packages/common/readme.md @@ -1,13 +1,13 @@ # Ts.ED -[![Build Status](https://travis-ci.org/Romakita/ts-express-decorators.svg?branch=master)](https://travis-ci.org/Romakita/ts-express-decorators) -[![Coverage Status](https://coveralls.io/repos/github/Romakita/ts-express-decorators/badge.svg?branch=master)](https://coveralls.io/github/Romakita/ts-express-decorators?branch=master) +[![Build Status](https://travis-ci.org/TypedProject/ts-express-decorators.svg?branch=master)](https://travis-ci.org/TypedProject/ts-express-decorators) +[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-express-decorators/badge.svg?branch=master)](https://coveralls.io/github/TypedProject/ts-express-decorators?branch=master) ![npm](https://img.shields.io/npm/dm/@tsed/common.svg) [![npm version](https://badge.fury.io/js/%40tsed%2Fcommon.svg)](https://badge.fury.io/js/%40tsed%2Fcommon) -[![Dependencies](https://david-dm.org/romakita/ts-express-decorators.svg)](https://david-dm.org/romakita/ts-express-decorators#info=dependencies) -[![img](https://david-dm.org/romakita/ts-express-decorators/dev-status.svg)](https://david-dm.org/romakita/ts-express-decorators/#info=devDependencies) -[![img](https://david-dm.org/romakita/ts-express-decorators/peer-status.svg)](https://david-dm.org/romakita/ts-express-decorators/#info=peerDependenciess) -[![Known Vulnerabilities](https://snyk.io/test/github/romakita/ts-express-decorators/badge.svg)](https://snyk.io/test/github/romakita/ts-express-decorators) +[![Dependencies](https://david-dm.org/TypedProject/ts-express-decorators.svg)](https://david-dm.org/TypedProject/ts-express-decorators#info=dependencies) +[![img](https://david-dm.org/TypedProject/ts-express-decorators/dev-status.svg)](https://david-dm.org/TypedProject/ts-express-decorators/#info=devDependencies) +[![img](https://david-dm.org/TypedProject/ts-express-decorators/peer-status.svg)](https://david-dm.org/TypedProject/ts-express-decorators/#info=peerDependenciess) +[![Known Vulnerabilities](https://snyk.io/test/github/TypedProject/ts-express-decorators/badge.svg)](https://snyk.io/test/github/TypedProject/ts-express-decorators) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) [![backers](https://opencollective.com/tsed/tiers/backer/badge.svg?label=backer&color=brightgreen)](https://opencollective.com/tsed/tiers/backer/badge.svg?label=backer&color=brightgreen) @@ -131,7 +131,7 @@ new Server().start(); ``` > By default ServerLoader load controllers in `${rootDir}/controllers` and mount it to `/rest` endpoint. -To customize the server settings see [Configure server with decorator](http://romakita.github.io/#/configuration) +To customize the server settings see [Configure server with decorator](https://tsed.io/configuration.html) #### Create your first controller @@ -217,7 +217,7 @@ To test your method, just run your `server.ts` and send a http request on `/rest ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/core/readme.md b/packages/core/readme.md index 1624504097c..ab67f90c343 100644 --- a/packages/core/readme.md +++ b/packages/core/readme.md @@ -11,7 +11,7 @@ npm install --save @tsed/core ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/di/readme.md b/packages/di/readme.md index 6e63e4874e3..53c24a97f9e 100644 --- a/packages/di/readme.md +++ b/packages/di/readme.md @@ -11,7 +11,7 @@ npm install --save @tsed/di ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/graphql/readme.md b/packages/graphql/readme.md index 23804955352..5f438f0ff35 100644 --- a/packages/graphql/readme.md +++ b/packages/graphql/readme.md @@ -164,7 +164,7 @@ export class RecipeResolver { ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/legacy/package.json b/packages/legacy/package.json index 4f09787d6cf..cd5994b71c1 100644 --- a/packages/legacy/package.json +++ b/packages/legacy/package.json @@ -30,12 +30,12 @@ "author": "Romain Lenzotti", "license": "MIT", "bugs": { - "url": "https://github.com/Romakita/ts-express-decorators/issues" + "url": "https://github.com/TypedProject/ts-express-decorators/issues" }, "homepage": "http://tsed.io/", "repository": { "type": "git", - "url": "https://github.com/Romakita/ts-express-decorators.git" + "url": "https://github.com/TypedProject/ts-express-decorators.git" }, "dependencies": { "@tsed/core": "0.0.0-PLACEHOLDER", diff --git a/packages/legacy/readme.md b/packages/legacy/readme.md index e097927bd47..06f287365b1 100644 --- a/packages/legacy/readme.md +++ b/packages/legacy/readme.md @@ -1,13 +1,13 @@ # Ts.ED -[![Build Status](https://travis-ci.org/Romakita/ts-express-decorators.svg?branch=master)](https://travis-ci.org/Romakita/ts-express-decorators) -[![Coverage Status](https://coveralls.io/repos/github/Romakita/ts-express-decorators/badge.svg?branch=master)](https://coveralls.io/github/Romakita/ts-express-decorators?branch=master) +[![Build Status](https://travis-ci.org/TypedProject/ts-express-decorators.svg?branch=master)](https://travis-ci.org/TypedProject/ts-express-decorators) +[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-express-decorators/badge.svg?branch=master)](https://coveralls.io/github/TypedProject/ts-express-decorators?branch=master) ![npm](https://img.shields.io/npm/dm/@tsed/common.svg) [![npm version](https://badge.fury.io/js/%40tsed%2Fcommon.svg)](https://badge.fury.io/js/%40tsed%2Fcommon) -[![Dependencies](https://david-dm.org/romakita/ts-express-decorators.svg)](https://david-dm.org/romakita/ts-express-decorators#info=dependencies) -[![img](https://david-dm.org/romakita/ts-express-decorators/dev-status.svg)](https://david-dm.org/romakita/ts-express-decorators/#info=devDependencies) -[![img](https://david-dm.org/romakita/ts-express-decorators/peer-status.svg)](https://david-dm.org/romakita/ts-express-decorators/#info=peerDependenciess) -[![Known Vulnerabilities](https://snyk.io/test/github/romakita/ts-express-decorators/badge.svg)](https://snyk.io/test/github/romakita/ts-express-decorators) +[![Dependencies](https://david-dm.org/TypedProject/ts-express-decorators.svg)](https://david-dm.org/TypedProject/ts-express-decorators#info=dependencies) +[![img](https://david-dm.org/TypedProject/ts-express-decorators/dev-status.svg)](https://david-dm.org/TypedProject/ts-express-decorators/#info=devDependencies) +[![img](https://david-dm.org/TypedProject/ts-express-decorators/peer-status.svg)](https://david-dm.org/TypedProject/ts-express-decorators/#info=peerDependenciess) +[![Known Vulnerabilities](https://snyk.io/test/github/TypedProject/ts-express-decorators/badge.svg)](https://snyk.io/test/github/TypedProject/ts-express-decorators) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) [![backers](https://opencollective.com/tsed/tiers/backer/badge.svg?label=backer&color=brightgreen)](https://opencollective.com/tsed/tiers/backer/badge.svg?label=backer&color=brightgreen) @@ -131,7 +131,7 @@ new Server().start(); ``` > By default ServerLoader load controllers in `${rootDir}/controllers` and mount it to `/rest` endpoint. -To customize the server settings see [Configure server with decorator](http://romakita.github.io/#/configuration) +To customize the server settings see [Configure server with decorator](https://tsed.io/configuration.html) #### Create your first controller @@ -217,7 +217,7 @@ To test your method, just run your `server.ts` and send a http request on `/rest ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/mongoose/readme.md b/packages/mongoose/readme.md index c072f0d9a5b..b438954fc9a 100644 --- a/packages/mongoose/readme.md +++ b/packages/mongoose/readme.md @@ -309,7 +309,7 @@ class UserService { ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/multipartfiles/readme.md b/packages/multipartfiles/readme.md index 69160055188..b7d3d402697 100644 --- a/packages/multipartfiles/readme.md +++ b/packages/multipartfiles/readme.md @@ -105,7 +105,7 @@ class MyCtrl { ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/servestatic/readme.md b/packages/servestatic/readme.md index c27f1094f1b..ad0fdb6c997 100644 --- a/packages/servestatic/readme.md +++ b/packages/servestatic/readme.md @@ -7,7 +7,7 @@ A package of Ts.ED framework. See website: https://tsed.io/#/serve-static-files ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/socketio/readme.md b/packages/socketio/readme.md index f066c438a75..6cc2d462c3a 100644 --- a/packages/socketio/readme.md +++ b/packages/socketio/readme.md @@ -283,7 +283,7 @@ See our documentation https://tsed.io/#/api/index ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/swagger/readme.md b/packages/swagger/readme.md index 46f41898b8d..94a0df27e4a 100644 --- a/packages/swagger/readme.md +++ b/packages/swagger/readme.md @@ -199,7 +199,7 @@ See our documentation https://tsed.io/#/api/index ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/testing/readme.md b/packages/testing/readme.md index 8b61ae43b50..2eb8c391529 100644 --- a/packages/testing/readme.md +++ b/packages/testing/readme.md @@ -12,7 +12,7 @@ npm install --save @tsed/testing ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/packages/typeorm/readme.md b/packages/typeorm/readme.md index d1c1eb1366f..68d1de1db5f 100644 --- a/packages/typeorm/readme.md +++ b/packages/typeorm/readme.md @@ -166,7 +166,7 @@ export class UsersCtrl { ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/readme.md b/readme.md index e097927bd47..06f287365b1 100644 --- a/readme.md +++ b/readme.md @@ -1,13 +1,13 @@ # Ts.ED -[![Build Status](https://travis-ci.org/Romakita/ts-express-decorators.svg?branch=master)](https://travis-ci.org/Romakita/ts-express-decorators) -[![Coverage Status](https://coveralls.io/repos/github/Romakita/ts-express-decorators/badge.svg?branch=master)](https://coveralls.io/github/Romakita/ts-express-decorators?branch=master) +[![Build Status](https://travis-ci.org/TypedProject/ts-express-decorators.svg?branch=master)](https://travis-ci.org/TypedProject/ts-express-decorators) +[![Coverage Status](https://coveralls.io/repos/github/TypedProject/ts-express-decorators/badge.svg?branch=master)](https://coveralls.io/github/TypedProject/ts-express-decorators?branch=master) ![npm](https://img.shields.io/npm/dm/@tsed/common.svg) [![npm version](https://badge.fury.io/js/%40tsed%2Fcommon.svg)](https://badge.fury.io/js/%40tsed%2Fcommon) -[![Dependencies](https://david-dm.org/romakita/ts-express-decorators.svg)](https://david-dm.org/romakita/ts-express-decorators#info=dependencies) -[![img](https://david-dm.org/romakita/ts-express-decorators/dev-status.svg)](https://david-dm.org/romakita/ts-express-decorators/#info=devDependencies) -[![img](https://david-dm.org/romakita/ts-express-decorators/peer-status.svg)](https://david-dm.org/romakita/ts-express-decorators/#info=peerDependenciess) -[![Known Vulnerabilities](https://snyk.io/test/github/romakita/ts-express-decorators/badge.svg)](https://snyk.io/test/github/romakita/ts-express-decorators) +[![Dependencies](https://david-dm.org/TypedProject/ts-express-decorators.svg)](https://david-dm.org/TypedProject/ts-express-decorators#info=dependencies) +[![img](https://david-dm.org/TypedProject/ts-express-decorators/dev-status.svg)](https://david-dm.org/TypedProject/ts-express-decorators/#info=devDependencies) +[![img](https://david-dm.org/TypedProject/ts-express-decorators/peer-status.svg)](https://david-dm.org/TypedProject/ts-express-decorators/#info=peerDependenciess) +[![Known Vulnerabilities](https://snyk.io/test/github/TypedProject/ts-express-decorators/badge.svg)](https://snyk.io/test/github/TypedProject/ts-express-decorators) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier) [![backers](https://opencollective.com/tsed/tiers/backer/badge.svg?label=backer&color=brightgreen)](https://opencollective.com/tsed/tiers/backer/badge.svg?label=backer&color=brightgreen) @@ -131,7 +131,7 @@ new Server().start(); ``` > By default ServerLoader load controllers in `${rootDir}/controllers` and mount it to `/rest` endpoint. -To customize the server settings see [Configure server with decorator](http://romakita.github.io/#/configuration) +To customize the server settings see [Configure server with decorator](https://tsed.io/configuration.html) #### Create your first controller @@ -217,7 +217,7 @@ To test your method, just run your `server.ts` and send a http request on `/rest ## Contributors Please read [contributing guidelines here](./CONTRIBUTING.md). - + ## Backers diff --git a/repo.config.js b/repo.config.js index 6a24b911ceb..60e7c135809 100644 --- a/repo.config.js +++ b/repo.config.js @@ -12,7 +12,7 @@ module.exports = { typings: "lib/index.d.ts", repository, bugs, - homepage: `https://github.com/Romakita/ts-express-decorators/src/${pkgName}`, + homepage: `https://github.com/TypedProject/ts-express-decorators/src/${pkgName}`, author, contributors, license,