Raddy Website Design & Development Tutorials | RaddyDev

Build News Website With Node.js, Express & EJS – WP Rest API + newsApi

By Raddy in NodeJs ·

Today we are going to build a simple News website/app using Node.js, Express, EJS and we’ll be also using some dependencies such as AXIOS, Body-Parser and Nodemon.

The website is going to have two main features which are Searching and displaying News Articles. I am going to keep it simple and straight to the point. No bootstrap and we will have a very minimal amount of CSS (SCSS).

The data for the articles will come from my personal website, but feel free to use whatever API you wish.

Here are some good suggestions:

- Your own WordPress site
- Newsapi.org
- Bing News API
- Medium
- Twitter

Before you start, you need to make sure that you have Node.js installed and have a basic understanding of Node.js and Express. For more information please watch the video.

I advise you to use one of the listed API’s above or use your own WordPress website. Alternatively, you can try using my endpoints listed below:

There is a small chance that my firewall might stop you from reaching the endpoints. You can test them by visiting the URL’s below.

WP Endpoints

URL’s have changed from ‘.co.uk’ to ‘.dev’.

https://raddy.dev/wp-json/wp/v2/posts/
https://raddy.dev/wp-json/wp/v2/posts?search=photoshop
https://raddy.dev/wp-json/wp/v2/posts/5372
https://raddy.dev/wp-json/wp/v2/posts?_embed

_embeded gives you more data to work with.

Initialize New Project

To initialise a new Node.js project all you have to do is to create a new project folder “news-app” and then run the Command line or PowerShell in the same directory. Once you do that to initialise a new project simply put the following command:

PowerShell

This will initialise a new project for you and it’s going to ask you a few questions about your project. The most important one is to give your project a name and then you can just keep pressing enter until the installation is over.

Project Structure

Now let’s create the following folders and files, leaving node_modules, readme.md, package-lock and package-json as that should have been automatically generated by now.

📂 node_modules
📂 public
 📂 css
  📜 styles.css
  📜 styles.scss
 📂 img
  🖼 default.jpg
📂 src
 📂 routes
  📜 news.js
 📂 views
  📂 partials
   📜 search.ejs
  📜 news.ejs
  📜 newsSearch.ejs
  📜 newsSingle.ejs
📜 README.md
⚓ .env
🌍 app.js
📜 package-lock.json
📜 package-json

Dependencies Installation

There are a few dependencies that we need to install to get started. Here is the list:

[x] Body-parser [deprecated]
[x] Dotenv
[x] EJS
[x] Express
[x] Axios

Let’s do that by opening the terminal / powershell and installing the dependencies by typing the following command:

You no longer need to install the body-parser. It comes with Express

PowerShell

Restarting the local server

Restarting the server automatically would be annoying. To save us some time let’s quickly install Nodemon.

PowerShell

To setup up the application to run with nodemon just add the “start” line under scripts in your package.json file.

package.json

Start our local server

To start our application / our local server simply type the following command in the command line:

PowerShell

Hopefully, everything should be working just fine and you won’t have any errors. Obviously, at this point, we haven’t yet started creating our website. Let’s do that.

Application

Let’s now create our application file. This file will be called app.js and it will sit at the root of our website.

In this file, we need to do a couple of things. We need to require some of the dependencies that we will be working with and we also need to set up our server.

JavaScript

Views

Let’s start by building our home page/news page. In the views folder, you should have news.ejs file by now. Let’s create a very simple HTML file:

news.ejs

Routes

Routes

CSS

CSS

API Development tool

Postman is a collaboration platform for API development. Postman’s features simplify each step of building an API and streamline collaboration so you can create better APIs—faster.

Postman

The tool I was using in the video to Get data is Postman.

Examples:

Download

Thank you for reading this article. Please consider subscribing to my YouTube Channel.

Want to deploy your project for free on Heroku? Read the article

YouTube Questions

How to get and display the articles from the NewsApi.org

This example is only for the home (news.ejs) page. It’s more or less the same as the WordPress example, but you just have to change the names. In this example, the link goes straight to the article as the content the API returns is not long enough to be on another page (in my opinion).

HTML

The difference would be that we need to access the data object and then go into the articles. That’s pretty much it. This is only the GET Axios NewsApi example. Make sure that you add your API key.

JavaScript

How to make the Search work?

First, we need to change the JSON file names so they match the NewsApi.

HTML

Then we need to swap the URL and go into the object of the article:

JavaScript

That’s it. The search should be working.

Quick note: You might want to put something in place to prevent JS Injection Attacks.

Thank you for reading this article. Please consider subscribing to my YouTube Channel.

More Resources:

  1. hindrik says:

    hindrik öunpuu
    för 0 sekunder sedan
    Hi I tried your file and what you did was excellent, I just trying to learn to express downloaded your source code tried and got following Error write EPROTO 14116:error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert internal error:c:\ws\deps\openssl\openssl\ssl\record\rec_layer_s3.c:1546:SSL alert number 80 . Tried this that I find on the net didn’t work: npm config set https-proxy http://proxy.example.com:8080

  2. yola says:

    Hey Raddy! Thanks for the post. But you have changed your url from `raddy.co.uk` to `raddy.dev` and might want to change your urls from WP Endpoints

    1. Raddy says:

      I totally forgot to update the URL’s in the article. I will do that now, thank you for letting me know. Also, I’ve added a Firewall to the website to make it more secure which might result in blocking people from accessing the API’s. I think that I allowed the API’s, but I will double-check that.

Leave a Reply

Your email address will not be published. Required fields are marked *

Buy Me A Coffee