# express-async-quick-start **Repository Path**: fengmoxi/express-async-quick-start ## Basic Information - **Project Name**: express-async-quick-start - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-14 - **Last Updated**: 2021-01-14 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # express-async-quick-start > A bare minimum project structure to get started developing with [`express`](http://www.expressjs.com.cn). ## Getting Started Simply clone down this reposity, install dependencies, and get started on your application. The use of the [yarn](https://yarnpkg.com/) package manager is **strongly** recommended, as opposed to using `npm`. ```bash # create a directory of your choice, and copy template using git clone git clone https://github.com/fengmoxi/express-async-quick-start.git MyProject cd MyProject rm -rf .git git init # install dependencies yarn ``` ### Scripts ```bash # run application yarn start ```