├── .env ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── package.json ├── public ├── css │ ├── styles.css │ ├── styles.css.map │ └── styles.scss └── img │ └── default.jpg └── src ├── routes └── news.js └── views ├── news.ejs ├── newsSearch.ejs ├── newsSingle.ejs └── partials └── search.ejs /.env: -------------------------------------------------------------------------------- 1 | API_KEY = 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://www.buymeacoffee.com/RaddyTheBrand'] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | package-lock.json 4 | test/*.log -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/package.json -------------------------------------------------------------------------------- /public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/public/css/styles.css -------------------------------------------------------------------------------- /public/css/styles.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/public/css/styles.css.map -------------------------------------------------------------------------------- /public/css/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/public/css/styles.scss -------------------------------------------------------------------------------- /public/img/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/public/img/default.jpg -------------------------------------------------------------------------------- /src/routes/news.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/src/routes/news.js -------------------------------------------------------------------------------- /src/views/news.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/src/views/news.ejs -------------------------------------------------------------------------------- /src/views/newsSearch.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/src/views/newsSearch.ejs -------------------------------------------------------------------------------- /src/views/newsSingle.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/src/views/newsSingle.ejs -------------------------------------------------------------------------------- /src/views/partials/search.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaddyTheBrand/Node.js-News-Website/HEAD/src/views/partials/search.ejs --------------------------------------------------------------------------------