GithubHelp home page GithubHelp logo

node_blog's Introduction

guide

setup

npm init -y

download all necessary packages

npm i express ejs express-ejs-layouts

install development dependencies

npm i --save-dev nodemon

install database

install mongoDb on your local device npm i mongoose

load environment variables

npm i --save-dev dotenv

check if we are running in production environment

if (process.env.NODE_ENV !== "production") {
require("dotenv").parse();
}

^^^ this will not work

if (process.env.NODE_ENV !== "production") {
require("dotenv").config();
}

^^^ this will work

configure heroku create a databse for mongo db on mongo db atlas.

  • free aws cluster
  • keep everything default

Creating New Routes create authors.js

// All authors route create

router.get('/', (req, res) => {
    res.render('authors/index')
})

// New authors route create

    res.render(authors/new)
})

// Create Author

router.post('/', (req, res) => {
    res.send('Create')
})

Now we can create the views for the routes

  • create an authors folder
  • create new file called index.ejs
  • create new file called new.ejs

Each one of our routes should be in their own folder. Routes or controllers will have a single file. Views will have a single folder for the files associated with the controller.

create a model

=================

  • create models folder
  • create js file using singular of routes ie. /routes/authors => /models/author.js
  • in models you can use:
app.use(express.urlencoded({extended: false}))
  • allowing us to access all parameters from our form inside our routes
  • *** this needs to be ontop of app.use('articles', articleRouter)
router.post('/', (req, res) => {
    const article = new Article({
        req.body.markdown
    })
})

node_blog's People

Contributors

yfove avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.