Giter Site home page Giter Site logo

leiquan / fast-server Goto Github PK

View Code? Open in Web Editor NEW
26.0 2.0 12.0 1.89 MB

A fast running, fast developing Node.js server solution, based on KOA 一个运行速度快、开发速度快的 Node.js 服务端解决方案,基于 KOA

JavaScript 99.91% EJS 0.09%
nodejs koa koa2 sequlize mysql redis crontab session node-koa node-server

fast-server's People

Contributors

dependabot[bot] avatar leiquan avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

fast-server's Issues

登录认证问题

在app.js中,中间件的位置需要修改,
`app.use(
session({
key: "SSID",
rolling: true,
cookie: {
path: "/",
httpOnly: true,
maxAge: 24 * 60 * 60 * 1000, //cookie 有效期1天,默认为 session 的 ttl
overwrite: true,
signed: true
},
store: redisStore({
host: env.redis.host,
port: env.redis.port,
auth_pass: env.redis.password,
db: 0 // session 放在 db0,log 放在 db1
})
})
);

// 引入自定义的用户认证中间件
let auth = require("./utils/midware/auth");
app.use(auth);`

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.