├── README.md ├── app.js ├── data └── noticias.json ├── package.json └── src ├── controllers └── news.js ├── models └── news.js ├── routes └── news.js └── views └── news └── index.ejs /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/app.js -------------------------------------------------------------------------------- /data/noticias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/data/noticias.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /src/controllers/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/src/controllers/news.js -------------------------------------------------------------------------------- /src/models/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/src/models/news.js -------------------------------------------------------------------------------- /src/routes/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/src/routes/news.js -------------------------------------------------------------------------------- /src/views/news/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andersonirias/mvc-exemplo-nodejs/HEAD/src/views/news/index.ejs --------------------------------------------------------------------------------