A boilerplate for a typescript project so you could get started quicker without using any weird tools. Perfect if you use git and vscode.
This project is licensed under the Unlicense license, so you can choose whatever license you want.
- Use linux
- Have the following things installed:
node,yarn,git,tscand Visual Studio Code.
git clone https://github.com/wait-what/typescript-node-boilerplate.git my-project
cd my-project
yarn
- Reset the git repository:
rm -rf .git
git init
- Set the origin:
git remote set-url origin https://github.com/username/my-project.git
- Delete the existing LICENSE file, unless you wish to keep the Unlicense license.
- Pick the license you want from here: list of open source licenses
- Set the correct license string
- Set the author name
- Set the repository url (if you want to use git)
- Describe your project briefly at the top
- Explain how to run and use your program
- Mention which license it's licensed under
Press F5 (if you're using VSCode) to start your application. Magic!