This project is a template for setting up a full-stack TypeScript application with a Node.js backend ๐ฉ and your choice of frontend framework: React โ๏ธ, Angular
This project includes pre-configured setups for:
- Babel ๐ต
- TypeScript ๐ต
- ESLint ๐ ๏ธ
- Prettier ๐๏ธ
- Jest ๐
- Husky ๐ถ
First, install the project dependencies:
npm install
Next, run the setup-eslint
script to choose your frontend and backend frameworks:
npm run setup-eslint
This script will prompt you to choose a frontend framework (React โ๏ธ, Angular
โ ๏ธ Important: After the initial setup, manually delete thesetup-eslint.ts
file and its reference in thepackage.json
scripts. Also, don't forget to remove theFRAMEWORKS_GUIDE.md
file as it is no longer needed. ๐๏ธ
To remove the setup script and its references after the initial setup, you can run the following command in your terminal:
rm ./setup-eslint.ts && sed -i '' '/"setup-eslint":/d' package.json && rm FRAMEWORKS_GUIDE.md && sed -i '' '/Frameworks Guide/d' README.md
โ ๏ธ Important: After running the above command, make sure to update yourREADME.md
file to remove any scripts or references that are no longer needed. Also, remember to update theCONTRIBUTING.md
file and any other files that contain a GitHub link to this project.
If you're having trouble making a commit, it might be due to the precommit
hook, which runs the lint
and test
scripts before each commit. If these scripts find any errors, the commit will be blocked. Check the output for any lint or test errors and fix them before trying to commit again.
To run these scripts, use npm run <script-name>
:
start
: ๐ Builds the TypeScript code and starts the application.build
: ๐จ Compiles the TypeScript code using the TypeScript compiler (tsc
).test
: ๐งช Runs tests using Jest and generates a coverage report.format
: ๐๏ธ Formats the code using Prettier.lint
: ๐งน Lints all JavaScript and TypeScript files in the project using ESLint.lint:root
: ๐งน Lints JavaScript and TypeScript files in the root directory, excluding thefrontend
andbackend
directories.lint:frontend
: ๐งน Lints JavaScript and TypeScript files in thefrontend
directory.lint:backend
: ๐งน Lints JavaScript and TypeScript files in thebackend
directory.setup-eslint
: ๐ง Runs the setup script to choose the frontend and backend frameworks, install the necessary dependencies, and configure the project.precommit
: ๐ Runs thelint
andtest
scripts before each commit to ensure code quality. This is managed by Husky ๐ถ.pretest
: ๐ Lints the code before running tests.watch
: ๐ Runs tests in watch mode using Jest.debug
: ๐ Starts the application in debug mode usingnodemon
.clean
: ๐งฝ Removes thenode_modules
directory andpackage-lock.json
file.prepare
: ๐พ Sets up Husky for managing git hooks.
This template includes several GitHub Actions workflows that automate various tasks:
๐ci.yml
: Runs your project's continuous integration (CI) tasks.๐close-merged-pull-requests.yml
: Automatically closes pull requests that have been merged.โณclose-stale-issues-and-prs.yml
: Closes stale issues and pull requests.๐ท๏ธlabel-new-pull-requests.yml
: Automatically adds labels to new pull requests. -๐thank-contributors-on-issue-close.yml
: Thanks contributors when an issue they commented on is closed.๐welcome-new-pull-requests.yml
: Posts a welcome message on new pull requests.๐welcome.yml
: Posts a welcome message on new issues.โฌ๏ธnpm-update.yml
: runs every day and updates package.json with new versions of dependencies๐งนremove-stale-unmerged-branches.yml
: Remove stale unmerged branches๐งนremove-merged-branches.yml
: Remove merged Branches
These workflows use the secrets.GITHUB_TOKEN
secret, which GitHub automatically creates for every repository. You can create a personal access token and add it as a secret in your repository. For more information, see Creating and storing encrypted secrets.
This project includes a .devcontainer.json
file which allows you to work on this project in a Docker container using GitHub Codespaces. This helps to maintain a consistent development environment, making it easier for you to collaborate with others without having to worry about individual setup.
GitHub Codespaces configures your development environment based on your project's needs using this file. When you create a new codespace for this project, the Codespaces environment is automatically configured as per the settings defined in .devcontainer.json
.
To use GitHub Codespaces:
- Navigate to the main page of the repository.
- Click the Code button and then click "Open with Codespaces".
- Click "+ New codespace".
Your development environment is now set up and running in a Docker container in the cloud. All commands you run in the Codespaces terminal will be executed inside the container. Any changes you make to the project will be reflected in the container and vice versa.
For more information on how to choose and work with different frontend and backend frameworks in this project, please read the Frameworks Guide.
If you appreciate my work and would like to support me, consider sponsoring me on GitHub Sponsors. Your support is greatly appreciated and helps me continue my contributions to open source and volunteer work.
Contributions are welcome! Please read the Contributing Guide. for details on our code of conduct and the process for submitting pull requests.
Please read our Code of Conduct to keep our community approachable and respectable.
This project is licensed under the MIT License - see the LICENSE file for details.
ยฉ 2024 Jagoda11
For more insights and detailed guides, check out these related articles: