GithubHelp home page GithubHelp logo

linqq / thinkjs Goto Github PK

View Code? Open in Web Editor NEW

This project forked from thinkjs/thinkjs

0.0 1.0 0.0 6.66 MB

Use full ES2015+ features to develop Node.js applications, Support TypeScript

Home Page: http://www.thinkjs.org/

License: MIT License

JavaScript 84.70% TypeScript 0.48% Nginx 0.30% HTML 14.52%

thinkjs's Introduction

thinkjs


NPM version travis-ci Coverage Status Dependency Status

简体中文文档

Introduction

As a Node.js MVC framework, ThinkJS 2.0 has completely been rewritten with brand-new ECMAScript 2015/2016 features. By using ES2016's async/await or ES2015's Generator Function features, ThinkJS 2.0 could thoroughly solve the asynchronous nesting problem within Node.js. Also, ThinkJS 2.0 has designed by absorbing the concepts and ideas of many frameworks around the world, so developing Node.js projects with ThinkJS would be more simple and efficient than ever.

It's a trend that using ES2015/2016 features to develop projects thanks to the high development efficiency. The new version of Node.js has improved to support many ES2015/2016 features, though some features have not been supported until now, and for those features we can use Babel to compile the code.

//user controller, home/controller/user.js
export default class extends think.controller.base {
  //login action
  async loginAction(self){
    //if it's GET method,display the login page
    if(this.isGet()){
      return this.display();
    }
    //here, we can use POST retrieve all data, and the data have been validated in the logic
    let data = this.post();
    //user name to match the recod in the database
    let result = await this.model('user').where({name: data.name}).find();
    if(!validateLogin(result)){
      return this.fail('login fail');
    }
    //obtain the user infomation, and write to the seesion
    await this.session('userInfo', result);
    return this.success();
  }
}

With the help of Babel compiling, we can use the ES2015/2016 features boldly, and then the code can run in the Node.js 0.12.0+ environment stably.

Features

  • Developing projects using all the new features of ES2015+.
  • Auto compiling & auto hot reload when file changed, no need to restart Node.js server.
  • Supporting debug with ES2015+.
  • Supporting TypeScript.
  • Supporting various project construct forms and environments.
  • Supporting MySQL, MongoDB, PostgreSQL and SQLite databases.
  • Supporting various WebSocket libraries such as socket.io and SockJS.
  • Supporting various Sessions such as Memory, File, Db and Redis.
  • Supporting various Caches such as Memory, File, Redis and Memcache.
  • Supporting various template engines such as ejs, jade, swig and nunjucks.
  • Supporting AOP, and magic methods such as __before and __after.
  • Supporting multistage Controller.
  • Supporting 400, 404, 500 and 503 error pages.
  • Supporting command-line call and crontab timing task execution.
  • Multiple Hooks and Middlewares.
  • Logs with details, such as requests, errors, performance, etc.
  • Supporting commands that could automatically create REST API.
  • Supporting internationalization and multiple themes.
  • 1700+ test cases, code coverage greater than 95%.

Installation

npm install -g thinkjs

Create Application

thinkjs new demo --es

Install dependencies

npm install

Start Application

npm start

You will see some messages on console like :

[2016-01-12 15:09:51] [THINK] Server running at http://127.0.0.1:8360/
[2016-01-12 15:09:51] [THINK] ThinkJS Version: 2.1.0
[2016-01-12 15:09:51] [THINK] Cluster Status: closed
[2016-01-12 15:09:51] [THINK] WebSocket Status: closed
[2016-01-12 15:09:51] [THINK] File Auto Compile: true
[2016-01-12 15:09:51] [THINK] File Auto Reload: true
[2016-01-12 15:09:51] [THINK] App Enviroment: development

Performance comparsion

Evaluate whether a good framework, on the one hand to see the support of the function, it also depends on the performance. Although ThinkJS more suits for large projects, functions and complexity far exceeds Express and Koa, but the performance is not much less than the Express and Koa.

thinkjs-performance

tips: The above data using distributed stress testing system to test.

All we can see is that there has just little distance in ThinkJS and Express, Koa. ThinkJS and Sails.js both suits large projects, but ThinkJS has higher performance than Sails.js.

You can go https://github.com/thinkjs-team/thinkjs-performance-test to clone all testing code and run in local. If you use ab testing tool, you shoud know it is instability on Mac.

Documentation

https://thinkjs.org/en

License

MIT

thinkjs's People

Contributors

akira-cn avatar alincode avatar alphatr avatar carlisliu avatar ckken avatar cuitianze avatar eurekao avatar guilhermereda avatar hisland avatar im-kulikov avatar jedmeng avatar jiangyuan avatar johnzgit avatar leeight avatar liutao avatar luozhanhong avatar maxzhang avatar pjk420838945 avatar qgy18 avatar rayi avatar ruanzhijun avatar snadn avatar soddy avatar solarhell avatar songguangyu avatar utillyou avatar wangfulin avatar wavelynn avatar welefen avatar yhanwen avatar

Watchers

 avatar

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.