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

Commit 96f5b0e9 by Sushant

docs: add resources section

1 parent 4a0f41c8
Showing with 53 additions and 3 deletions
...@@ -42,14 +42,15 @@ ...@@ -42,14 +42,15 @@
"./docs/data-types.md", "./docs/data-types.md",
"./docs/models-definition.md", "./docs/models-definition.md",
"./docs/models-usage.md", "./docs/models-usage.md",
"./docs/hooks.md",
"./docs/querying.md", "./docs/querying.md",
"./docs/instances.md", "./docs/instances.md",
"./docs/associations.md", "./docs/associations.md",
"./docs/transactions.md", "./docs/transactions.md",
"./docs/scopes.md", "./docs/scopes.md",
"./docs/hooks.md",
"./docs/raw-queries.md", "./docs/raw-queries.md",
"./docs/migrations.md", "./docs/migrations.md",
"./docs/resources.md",
"./docs/typescript.md", "./docs/typescript.md",
"./docs/upgrade-to-v5.md", "./docs/upgrade-to-v5.md",
"./docs/legacy.md", "./docs/legacy.md",
......
...@@ -20,7 +20,7 @@ Sequelize follows [SEMVER](http://semver.org). Supports Node v6 and above to use ...@@ -20,7 +20,7 @@ Sequelize follows [SEMVER](http://semver.org). Supports Node v6 and above to use
## v5 Release ## v5 Release
You can find the upgrade guide and changelog in [upgrade-to-v5.md](https://github.com/sequelize/sequelize/blob/master/docs/upgrade-to-v5.md). You can find the upgrade guide and changelog [here](http://docs.sequelizejs.com/manual/upgrade-to-v5.html).
## Table of Contents ## Table of Contents
- [Installation](#installation) - [Installation](#installation)
...@@ -59,7 +59,7 @@ If you have any security issue to report, contact project maintainers privately. ...@@ -59,7 +59,7 @@ If you have any security issue to report, contact project maintainers privately.
### Tools ### Tools
- [Sequelize & TypeScript](https://github.com/RobinBuschmann/sequelize-typescript) - [Sequelize & TypeScript](https://github.com/RobinBuschmann/sequelize-typescript)
- [Sequelize & GraphQL](https://github.com/mickhansen/graphql-sequelize) - [Sequelize & GraphQL](https://github.com/mickhansen/graphql-sequelize)
- [Add-ons & Plugins](https://github.com/sequelize/sequelize/wiki/Add-ons-&-Plugins) - [Add-ons & Plugins](http://docs.sequelizejs.com/manual/resources.html)
- [Sequelize CLI](https://github.com/sequelize/cli) - [Sequelize CLI](https://github.com/sequelize/cli)
### Learning ### Learning
......
# Resources
## Addons & Plugins
### ACL
* [ssacl](https://github.com/pumpupapp/ssacl)
* [ssacl-attribute-roles](https://github.com/mickhansen/ssacl-attribute-roles)
### Auto Code Generation & Scaffolding
* [meteor modeler](https://www.datensen.com/) - Desktop tool for visual definition of Sequelize models and asssociations.
* [sequelize-ui](https://github.com/tomjschuster/sequelize-ui) - Online tool for building models, relations and more.
* [sequelizer](https://github.com/andyforever/sequelizer) - A GUI Desktop App for generating Sequelize models. Support for Mysql, Mariadb, Postgres, Sqlite, Mssql.
* [sequelize-auto](https://github.com/sequelize/sequelize-auto) Generating models for SequelizeJS via the command line is another choice.
* [pg-generator](http://www.pg-generator.com/builtin-templates/sequelize/) - Auto generate/scaffold Sequelize models for PostgreSQL database.
* [seqelizejs-decorators](https://www.npmjs.com/package/sequelizejs-decorators) decorators for composing sequelize models
### Autoloader
* [sequelize-autoload](https://github.com/boxsnake-nodejs/sequelize-autoload) - An autoloader for Sequelize, inspired by [PSR-0](https://www.php-fig.org/psr/psr-0/) and [PSR-4](https://www.php-fig.org/psr/psr-4/).
### Caching
* [sequelize-transparent-cache](https://github.com/DanielHreben/sequelize-transparent-cache)
### Filters
* [sequelize-transforms](https://www.npmjs.com/package/sequelize-transforms) - Add configurable attribute transforms.
### Fixtures / mock data
* [Fixer](https://github.com/olalonde/fixer)
* [Sequelize-fixtures](https://github.com/domasx2/sequelize-fixtures)
* [Sequelize-fixture](https://github.com/xudejian/sequelize-fixture)
### Hierarchies
* [sequelize-hierarchy](https://www.npmjs.com/package/sequelize-hierarchy) - Nested hierarchies for Sequelize.
### Historical records / Time travel
* [sequelize-temporal](https://github.com/bonaval/sequelize-temporal) - Temporal tables (aka historical records)
### Migrations
* [umzug](https://github.com/sequelize/umzug)
### Slugification
* [sequelize-slugify](https://www.npmjs.com/package/sequelize-slugify) - Add slugs to sequelize models
### Tokens
* [sequelize-tokenify](https://github.com/pipll/sequelize-tokenify) - Add unique tokens to sequelize models
### Miscellaneous
* [sequelize-deep-update](https://www.npmjs.com/package/sequelize-deep-update) - Update a sequelize instance and its included associated instances with new properties.
* [sequelize-noupdate-attributes](https://www.npmjs.com/package/sequelize-noupdate-attributes) - Adds no update/readonly attributes support to models.
* [sequelize-joi](https://www.npmjs.com/package/sequelize-joi) - Allows specifying [Joi](https://github.com/hapijs/joi) validation schema for JSONB model attributes in Sequelize.
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!