不要怂,就是干,撸起袖子干!

Commit 638dbd7b by Sascha Depold

Improve wording on landing page

1 parent 06a85a6b
Showing with 7 additions and 3 deletions
...@@ -3,7 +3,11 @@ ...@@ -3,7 +3,11 @@
<span>Sequelize</span> <span>Sequelize</span>
</div> </div>
[Installation](http://sequelize.readthedocs.org/en/latest/docs/getting-started/) Sequelize is a promise-based ORM for Node.js and io.js. It supports the dialects PostgreSQL, MySQL,
MariaDB, SQLite and MSSQL and features solid transaction support, relations, read replication and
more.
[Installation](docs/getting-started/)
## Example usage ## Example usage
```js ```js
...@@ -19,8 +23,8 @@ return sequelize.sync().then(function() { ...@@ -19,8 +23,8 @@ return sequelize.sync().then(function() {
return User.create({ return User.create({
username: 'sdepold', username: 'sdepold',
birthday: new Date(1986, 06, 28) birthday: new Date(1986, 06, 28)
}).then(function(sdepold) {
console.log(sdepold.values)
}); });
}).then(function(sdepold) {
console.log(sdepold.values)
}); });
``` ```
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!