express-example icon indicating copy to clipboard operation
express-example copied to clipboard

A proposal for the usage of Sequelize within an Express.JS application.

Results 10 express-example issues
Sort by recently updated
recently updated
newest added

The new example does not show any associations; it would be very useful to show associations being performed as well as suggesting how to organize the code for that. See...

I think it's best if we create a new branch for this, instead of merging it into master. Or move the existing example to the legacy branch and merge this...

A minor change to eliminate an error originated by the way body is parsed. Express adopted built-in method to parse json as you know, so I changed the relevant dependency.

I think this repo is a great idea considering how complex Sequelize can get. I'm thinking about contributing and was wondering if there are any guides or rules to follow....

Possibly closes #106 need more work with @papb I added an examples for `associate` function, need more work with you @papb or other maintainers, thanks.

I added my MVC blog project and I renamed the existing project to be called "orchestra" because it seemed to be an orchestra management software data model.

When using `sequelize-cli init`, it will generate a directory structure similar to the following: - `config/` - `models/` - `migrations/` - `seeders/` **Optionally**, when `express-generator` is used, it generates a...

There are get, create, update and remove routes, but none that makes use of Sequelize's upsert, and it's not the same operation as create+update. Could you add it to the...

I've noticed that there is only a JavaScript example for sequelize that is also quite old, but there's none for TypeScript. And I am currently working on an open source...