Loading repository data…
Loading repository data…
scallops-cloud / repository
One-week Node.js & Express.js course: exercises & solutions for JavaScript beginner to understand various concepts to be able to build API backend server.
A transparent discovery signal based on current public GitHub metadata.
This score does not audit code, security, maintainers, documentation quality, or suitability. Verify the repository and its current documentation before adoption.
The course was designed for the Generation Thailand JSD Program. It is a one-week course for the students to learn the basic of Node.js and Express.js.
git clone git@github.com:scallops-cloud/nodejs-basic-course.git
cd nodejs-basic-course
git checkout -b exercise-work
Check the slide if available for the exercise, then try to work on the code in the exercise folder.
Commit once you are done to save the changes. Check the solution to compare the result.
https://github.com/scallops-cloud/nodejs-basic-course/tree/main/01-node-intro/exercises
https://github.com/scallops-cloud/nodejs-basic-course/tree/main/02-project-todo-cli/exercises
https://github.com/scallops-cloud/nodejs-basic-course/tree/main/03-express-intro/exercises
https://github.com/scallops-cloud/nodejs-basic-course/tree/main/04-project-todo-api-v1/exercises
https://github.com/scallops-cloud/nodejs-basic-course/tree/main/05-crud-rest-api/exercises
https://github.com/scallops-cloud/nodejs-basic-course/tree/main/06-authentication/exercises
exercise-work. And no uncommitted changes.git status
Expected result:
On branch exercise-work
nothing to commit, working tree clean
git add .
git commit -m "Day 1's work"
git checkout main
git pull
git checkout exercise-work
exercise-work branch.git merge main
Fork this repository to your own account.
Check the remote repository.
git remote -v
Expected result:
origin git@github.com:scallops-cloud/nodejs-basic-course.git (fetch)
origin git@github.com:scallops-cloud/nodejs-basic-course.git (push)
git remote add myrepo YOUR_GITHUB_REPO_URL
For example:
git remote add myrepo git@github.com:turboza/nodejs-basic-course.git
git push myrepo exercise-work