Skip to content

MhmtMutlu/nodejs-smart-edu

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

💻 Node.js Smart Edu Project

Live Site URL: Live Preview

  • Coded a basic Node.js application for CRUD operations.
  • Used UI template from html.design
  • Created NOSql backend with MongoDB.
  • Created pages by using EJS.

📌 Installation

Clone

git clone https://github.com/MhmtMutlu/nodejs-smart-edu.git

Change connection URL

// Create a database on MongoDB and change connection URL in app.js
// For example

mongoose.connect('mongodb://localhost/smartedu-db', {
 useNewUrlParser: true,
 useUnifiedTopology: true,
});

Change session middleware's store

// Use your database connection URL for session middleware
// For example

app.use(
  session({
    secret: "my_session_middleware",
    resave: false,
    saveUninitialized: true,
    store: MongoStore.create({ mongoUrl: "mongodb://localhost/smartedu-db" }),
  })
);

Install

npm install

Start

npm start

🧰 Technologies

📌 Todos

  • Design UI Template

About

Node.js smart edu project with using Express and MongoDB.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors