Elevate your application development experience with this enhanced Express API boilerplate. Designed to be both minimal and complete, it provides a solid foundation, streamlining your project right from the inception.
Follow these steps to get started:
-
Clone the Repository:
- Clone this repository to your local machine to have your own version of the boilerplate. Use the command
git clone <repository-url>
.
- Clone this repository to your local machine to have your own version of the boilerplate. Use the command
-
Install Dependencies:
- Execute
npm install
to install all the necessary dependencies to get you started.
- Execute
-
Local Development:
- Use
npm run dev
to start the local development server. It’s time to build something amazing!
- Use
-
Run Tests:
- Make sure your code is robust and works as expected by running tests with
npm run test
.
- Make sure your code is robust and works as expected by running tests with
Embark on your development journey with a pre-configured Express application and a server. The separation of the buildApp
function ensures you test your app, not the 3rd party middlewares. It also offers additional configuration options, including:
- Executing code after app creation but before the server starts.
- Running another server instance with the same application.
Equipped with jest
and supertest
, this boilerplate supports both unit and e2e testing. Sample tests are included, but you can delve into the Jest documentation to create tests as per your needs. A jest coverage report is included to keep track of your test coverages.
Experience seamless development with nodemon
and babel
. The added environment utility ensures you never face issues with missing required environment variables; it notifies and stops execution if any are missing. Expand and manage your environment variables and controls by enhancing the src/utils/environment.js
.
import ENV from 'environment'
// Example usage
if (ENV.isTest) {
// Code specific to the test environment
}
Maintain a clean and consistent codebase with the enforced coding style powered by ESLint and Prettier. Ensure these extensions are installed in your VS Code:
- ESLint
- Prettier ESLint
- Prettier - Code Formatter
Feel free to update .eslintrc
and .prettierrc
to match your coding style preferences.