Assignments Node VIII

Handing In Assignments

You must hand in by using git

Hand In by git

  • Create an empty repo on bitbucket.org, gitlab.com, or github.com,
  • git push your local repo to the above remote repo.
  • For node assignments please put the line(s)

    node_modules/

    into your .gitignore file.

Send a mail to with:

  • The word 'handin <subjectname>' in the subject line of your mail
  • The url of your repo(s).

Assignment Node VIII.0

In todays lesson you have seen a router that hinted at routes as a means of setting data id's for retrieval of data. In casu a country.

Create a page that displays a country from your recently developed world database.

Assignment Node VIII.1

In todays lesson you have seen a router that hinted at getting and posting of country data.

Create a page with a form for entering a country into your recently developed world database. The GET /countryData route displays the form for entering data, the corresponding POST route puts the data into the database.