V School | Better Humans, Better Outcomes

SchEMO

* Create an express server. * Create A mongoose Schema for emo musical groups. * The schema should be able to handle and object like this example. { name: "The long hairs", members: [ { name: "Billy Cane, instrument: "harmonica", age: 23}, { name: "Joe Sash", instrument: "trombone", age: 28 } ] }, yearFormed: 2008, records: [ { name: "don't cut my

Mongoose Schem-nastics

This is a review of how to create a mongoose schema, link it to a database and create basic CRUD methods. * Create an express server that has one Mongoose Schema for olympians. * Mongoose should connect to a new database called olympics. * The schema should be called olympian (remember mongoose will

Now You See Me...

Now you see me.... Now you don't * Create an Angular controller and connect it to a new index.html file. * Create an array called magicians that has at least 5 "magician" objects. * Each object should have at least name, age, and skills properties. { name: "Harry Houdini", age: 33, skills: ["Escaping"

Visual Studio Code Set-Up

Visual Studio Code is a free text-editor created by Microsoft. It is a lesser version than the full Visual Studio IDE (Integrated Development Environment). Visual Studio Code combines many good aspects of multiple text-editors. It has an easy to use plugin manager and is easy to customize. You can download

Create a .gitignore

A .gitignore file is a list of files to ignore when pushing files to Github.com. It tells git which files should be ignored when changes are staged (added) and committed. Some files are commonly not tracked by git so they are not committed nor sent up to repositories. Sending

V School | Better Humans, Better Outcomes © 2026