# express_socket.io_sequelize **Repository Path**: djxin/express_socket.io_sequelize ## Basic Information - **Project Name**: express_socket.io_sequelize - **Description**: nodejs服务端学习项目 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2018-04-19 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Express.js with Babel Boilerplate ### Features: - [Express.js](https://expressjs.com/) as the web framework. - ES2017+ support with [Babel](https://babeljs.io/). - Automatic polyfill requires based on environment with [babel-preset-env](https://github.com/babel/babel-preset-env). - Linting with [ESLint](http://eslint.org/). - Testing with [Jest](https://facebook.github.io/jest/). ### Deployment Deployment is specific to hosting platform/provider but generally: ```sh # yarn yarn run build # npm npm run build ``` will compile your `src` into `/dist`, and ```sh # yarn yarn start # npm npm start ``` will run `build` (via the `prestart` hook) and start the compiled application from the `/dist` folder. The last command is generally what most hosting providers use to start your application when deployed, so it should take care of everything. You can find small guides for Heroku, App Engine and AWS in [the deployment](DEPLOYMENT.md) document.