WEB DEVELOPER BOOTCAMP

HERE WE
HAVE

COFFEE

AND

SOME

CODING

WE GO FROM

<html>
    <head>
        <title>MY FIRST WEBPAGE</title>
    </head>
    <body>
        <h1>Hello, World! 👋</h1>
    </body>
</html>

TO

const mongoose = require('mongoose');
const dotenv = require('dotenv');
const app = require('./app');

dotenv.config({ path: './config.env' });

const DB = process.env.DATABASE_LOCAL;

mongoose
  .connect(DB, {
    useNewUrlParser: true,
    useCreateIndex: true,
    useUnifiedTopology: true,
    useFindAndModify: false
  })
  .then(con => {
    console.log('Connected to MongoDB 🚀');
  });

const port = 3000;
app.listen(port, () => {
  console.log(`Hello from port ${port} 👋`);
});

SO...

Do not be afraid of anything 😨 and come forward with me! 😎

Who the hell am i?

I have three years of

front-end development experience.
I have been professionally involved in back-end development for the past 6 months.

Course Summary

HTML

CSS

BOOTSTRAP

JS

COMMAND LINE

NODE JS

EXPRESS JS

MANGODB

GIT

FIREBASE

What should you do? 🤔

  • Code along with me 👨🏻‍💻
  • Take some notes 📝
  • Do your exercises 💪🏻
  • Ready to meet challenges 👩🏻‍🔬

Let's take action 🚀

Setup our development environment

VS CODE

Google Chrome

GuilanCE

By Ali Montajebi