Express Brute Sequelize

Sequelize Store for express-brute
Alternatives To Express Brute Sequelize
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Crate2,374
2 months agomitJavaScript
👕 👖 📦 A sample web and mobile application built with Node, Express, React, React Native, Redux and GraphQL. Very basic replica of stitchfix.com / krate.in (allows users to get monthly subscription of trendy clothes and accessories).
Typescript Express Starter1,984
4 days ago62May 26, 202232mitTypeScript
📘 Quick and Easy TypeScript Express Starter
Fullstack Graphql953
2 years agomitJavaScript
🌈 Simple Fullstack GraphQL Application. API built with Express + GraphQL + Sequelize (supports MySQL, Postgres, Sqlite and MSSQL). WebApp built with React + Redux to access the API. Written in ES6 using Babel + Webpack.
Epilogue824137143 years ago19December 12, 201673JavaScript
Create flexible REST endpoints and controllers from Sequelize models in your Express app
Node Ddd Boilerplate668
3 months ago46otherJavaScript
Node DDD Boilerplate
Youtubeclone Backend602
10 months ago8mitJavaScript
Youtube Clone Backend (Express + Sequelize)
Stackoverflow Clone Frontend485
5 months ago18mitJavaScript
Clone project of a famous Q/A website for developers built using MySQL, Express, React, Node, Sequelize :globe_with_meridians:
Mean Stack Relational426
4 years agomitJavaScript
M*EAN (*MySQL, Express, Angular, Node) - A Simple, Scalable and Easy starting point for javascript web development with a relational database ORM
Next Ssr Blog414
4 months ago6TypeScript
A blog system based on NextJS + Vuejs + NodeJS, good SEO support, continuous improvement
Express Promise320159147 years ago12December 01, 20148mitJavaScript
Middleware for easy rendering of async Query results.
Alternatives To Express Brute Sequelize
Select To Compare


Alternative Project Comparisons
Readme

Sequelize store for express-brute

Sequelize(MySQL) store adapter for the express-brute.

Installation

npm install express-brute-sequelize

Usage

var ExpressBrute = require('express-brute');
var SequelizeStore = require('express-brute-sequelize');
var Sequelize = require('sequelize');

var sequelize = new Sequelize('test', 'root', 'root', {
  host: "127.0.0.1",
  dialect: "mysql",
  logging: false
});

new SequelizeStore(sequelize, 'bruteStore', {}, function(store) {
	var bruteforce = new ExpressBrute(store);
	app.post('/session',
		bruteforce.prevent, // error 403 if too many requests for this route in short time
		function(req, res, next){
			res.send('Success!');
		}
	);
});

Issue Reporting

If you have found a bug or if you have a feature request, please report them at this repository issues section.

License

This project is licensed under the MIT license. See the LICENSE file for more info.

Popular Sequelize Projects
Popular Express Projects
Popular Data Processing Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Express
Coffeescript
Adapter
Sequelize
Brute