Lesson 39 of 50

Deployment

Deploying your project makes it accessible online. We can use GitHub Pages or other hosting providers to publish our JavaScript applications.

// Push project to GitHub
git init
git add .
git commit -m "Initial"
git push origin main
← Previous Next →