Skip to content

Commit

Permalink
Merge pull request #149 from pablo-abc/patch-1
Browse files Browse the repository at this point in the history
docs(@nestjs/mongoose) Change 'Mongoose' to 'ORM' on some lines
  • Loading branch information
kamilmysliwiec committed Sep 5, 2018
2 parents eac7400 + 9b626ca commit 97d1201
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app/homepage/pages/techniques/mongo/mongo.component.html
@@ -1,11 +1,11 @@
<div class="content">
<h3>Mongo</h3>
<p>
There are two ways of dealing with the MongoDB database. You can either use a <a href="https://github.com/Mongoose/Mongoose"
target="blank">Mongoose</a> that provides a MongoDB support or <a href="http://mongoosejs.com" target="blank">Mongoose</a>
There are two ways of dealing with the MongoDB database. You can either use an <a href="https://github.com/typeorm/typeorm"
target="blank">ORM</a> that provides a MongoDB support or <a href="http://mongoosejs.com" target="blank">Mongoose</a>
which is the most popular <a href="https://www.mongodb.org/" target="blank">MongoDB</a> object modeling tool. If you
wanna stay with the <strong>Mongoose</strong> you can follow <a routerLink="/techniques/sql">these steps</a>. Otherwise,
we'll use a dedicated <code>@nestjs/mongoose</code> package.
wanna stay with the <strong>ORM</strong> you can follow <a routerLink="/techniques/sql">these steps</a>. Otherwise,
we'll use the dedicated <code>@nestjs/mongoose</code> package.
</p>
<p>
Firstly, we need to install all of the required dependencies:
Expand Down Expand Up @@ -111,4 +111,4 @@ <h4>Example</h4>
<p>
A working example is available <a href="https://github.com/nestjs/nest/tree/master/sample/14-mongoose-base" target="blank">here</a>.
</p>
</div>
</div>

0 comments on commit 97d1201

Please sign in to comment.