SOLUTION:
- npm uninstall -g create-react-app
- npx clear-npx-cache
- npx create-react-app blog_react
SOLUTION:
1. app.js
const allController = require('./homeController')
app.get('/show', allController.getAllUser)
2. homeController.js
const user_model = require('./user_model') // include user_model.jsexports.getAllUser = async (req, res, next) => {
let user_data = await user_model.find()
res.render('show',{user_data})
}
3. Create Show.ejs file:
vim show.ejsblog_expressjs/views/show.ejs<table class="table">
<thead>…
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
}
/*
##Device = Laptops, Desktops
##Screen = B/w 1025px to 1280px
*/
@media (min-width: 1025px) and (max-width: 1280px) {
//CSS
}
/*…
navigator.browserDetection= (function(){
var ua= navigator.userAgent, tem,
M= ua.match(/(opera|chrome|safari|firefox|msie|trident(?=\/))\/?\s*(\d+)/i) || [];
if(/trident/i.test(M[1])){
tem= /\brv[ :]+(\d+)/g.exec(ua) || [];
return 'IE '+(tem[1] || '');
}…