Skip to content

Instantly share code, notes, and snippets.

View sajadghawami's full-sized avatar
⌨️

Sajad Ghawami sajadghawami

⌨️
View GitHub Profile
@sajadghawami
sajadghawami / gist:377126415c6125ca1219d57063e05cfc
Last active July 9, 2024 13:12
Generate a typescript project with nodemon
#!/bin/bash
# Ask for folder name
read -p "Enter your project folder name: " folder_name
# Create the project folder and navigate into it
mkdir "$folder_name"
cd "$folder_name"
# Initialize Project