1.2.0 • Published 7 months ago

express-ts-init v1.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

Contributors Forks Stargazers Issues MIT License

About The Project

express-ts-init is a repository that serves as a foundational boilerplate for building web applications using the Express.js framework and TypeScript. This repository is made with the intention to follow the best practice for clean architecture as well as type safety.

Built With

  • Express
  • TypeScript

Installation

Below is an example of how you can instruct your audience on installing and setting up your app. This template doesn't rely on any external dependencies or services.

  1. Clone the repo
    git clone https://github.com/mikah13/express-ts-init.git
  2. Install NPM packages
    pnpm install
  3. Enter your environments variables in .env files

     # App's running environment
     NODE_ENV=
    
     # App's running port
     PORT=3000
    
     # Cors origin url
     CORS_ORIGIN=
  4. Run the project in development mode

    pnpm run dev