# NodeJS Recall Tips

Node JS concept:

It is an open-souce JavaScript runtime envrionment which is built on Chrome V8 JavaScript engine which allow javascript code to run on server

1. Dependency Injection

In NodeJS, Dependency Injection (DI) is a common design pattern for your codebase, normally we consider to use DI when we want to make our life easier as developer, especially deal with unit tests, so we only mock it locally, eg: we don't need to make a real / remote API call from other servers, we can do it internally with DI concept.

DI concept is a wrapper concept which includes the dependent classes into the major class, functions can be straight away used

-- Similar like HOF (High Order Function): () => () => {...}

-- Purposes --

-- We are going to inject something (eg: class, function) instead of import something !!! -- Made code reusable easily with this pattern -- Able to supply dummy data for unit testing

eg:

// function 1: walawala function file
module.exports = function() {
  return {
    walawala: function() {
      console.log("ma mi ma mi hong ..");
    },
  };
};

// function 2: aloha function file
module.exports = function(walawalaClass) {
  return {
    aloha: function() {
      walawalaClass.walawala();
    },
  };
};

// index.js
var walawalaClass = require("./walawala")();
var alohaClass = require("./aloha")(walawalaClass); // DI
alohaClass.aloha(); // ma mi ma mi hong ..

2. General error handling

When we write NodeJS API, we can write a class and middleware function to handle generic errors,

Code example:

// Step 1: error handling class
class ApiError {
  constructor(code, message) {
    this.code = code;
    this.message = message;
  }

  static badRequest(msg) {
    return new ApiError(400, msg);
  }

  static generalServerError(msg) {
    return new ApiError(500, msg);
  }
}

module.exports = ApiError;

// Step 2: middleware function
const ApiError = require("./ApiError");

// Error handler middleware function !!!!!
function apiErrorHandler(err, req, res, next) {
  // For developer (maybe cloudwatch ..)
  console.error(err);

  if (err instanceof ApiError) {
    res.status(err.code).json({ message: err.message });
    return;
  }

  res.status(500).json({ message: "Server is down at moment .." });
}

module.exports = apiErrorHandler;

// Step 3: calling the error handler functionality:
router.get("/api/employees/:id", (req, res, next) => {
  Employee.findById(req.params.id, (err, data) => {
    if (!err) {
      res.send(data);
    } else {
      next(
        ApiError.badRequest(
          `Error for fetching /api/employees/:id, details are: ${err}`
        )
      );
      return; // stop the program when error detected ..
    }
  });
});

Complete version of codebase: here Reference: here

3. ExpressJS next()

In ExpressJS, next function is in express router which allows to pass the current route and find next middleware function to run, can be treated as skip it and go for next (function)

Without next(), it will cause the application api request process hang there which is not responding ...

Reference: here

4. When building node API, remember:

  • Write clean and readable code
  • Write reusable pieces of code across our application
  • Avoid repetition
  • Add new features without disrupting existing code

5. Common good practices when building node restful API

(1). Create a folder structure for your project (2). Separate business logic and API routes (3). Use a service layer (controller class -> service class -> database access layer (DAL)) (4). Use dependency injection (5). Use a config folder to organize configuration files (6). Use another layer for third-party services calls (7). Use a linter tool (8). Put comments in your codebase (especially business logic related)

Reference: here

6. Remember always save time to UTC time string for database (Backend development)

Examples:

// save time to UTC time string
$(".datetime").each(function(idx) {
  $(this).val(
    moment($(this).val(), "DD/MM/YYYY hh:mm A")
      .utc()
      .toISOString()
  );
});

// when front-end read the UTC time, please convert time from UTC time string to local time string, example:
const momentTZ = require("moment-timezone");
const localTime = momentTZ(UTCTime)
  .tz(currentTimeZone)
  .format("DD/MM/YYYY hh:mm A");

7. Using node https to make API

const https = require("https");

const errorMessage = "Username Not Found";

function httpGet({ body, ...options }) {
  return new Promise((resolve, reject) => {
    const req = https.request(
      {
        ...options,
      },
      (res) => {
        const stream = [];
        let body = "";

        res.on("data", (data) => stream.push(data));
        res.on("end", () => {
          body += stream;

          body = JSON.parse(body);
          resolve(body);
        });
      }
    );

    req.on("[error]:", reject);

    if (body) {
      req.write(body);
    }

    req.end();
  }).catch((err) => {
    console.error("Error: ", err);
  });
}

async function getNumTransactions(username) {
  const usernameResponse = await httpGet({
    method: "GET",
    headers: {
      "Content-Type": "application/json",
    },
    hostname: "jsonmock.hackerrank.com",
    path: `/api/article_users?username=${username}`,
  });

  if (
    usernameResponse &&
    usernameResponse.data &&
    usernameResponse.data[0] &&
    usernameResponse.data[0].id
  ) {
    console.log(usernameResponse);
    const userId = usernameResponse.data[0].id;
    try {
      const userIdResponse = await httpGet({
        method: "GET",
        headers: {
          "Content-Type": "application/json",
        },
        hostname: "jsonmock.hackerrank.com",
        path: `/api/transactions?&userId=${userId}`,
      });

      if (userIdResponse && userIdResponse.total) {
        console.log(userIdResponse.total);
        return userIdResponse.total;
      }

      return errorMessage;
    } catch (error) {
      return errorMessage;
    }
  }
  return errorMessage;
}

// console.log(getNumTransactions("jay"));
console.log(getNumTransactions("epaga"));

8. API Folder structure (2021 understanding)

assets
  - images
  - fonts (optional)
src
  - apis
    - v1
      - controllers (MVC: C: Controller Layer)
        - tests
        - index.j(t)s (for general import purpose)
      - utils (helper/utility functions)
        - tests
      - constants
        - types (if using typescript)
        - normal constants files based on category
      - middleware
        - tests
      - models (MVC: M: Model Layer)
        - index.j(t)s (for general import purpose)
      - routes
        - index.j(t)s (for general import purpose)
      - services (Service layer for extract business logics !!)
      - validations
        - tests (optional)
        - index.j(t)s (for general import purpose)
  - config
    - database config
    -
  index.ts (root file like do all imports and server boot up)
  .env (variables setup)
  .e(t)slintignore
  .gitignore
  jest.config.json
  package.json
  tsconfig.json (optional typescript only)
  yarn.lock

Reference Link: <a href="https://www.youtube.com/watch?v=oNlMrpnUSFE" target="_blank">here</a>

9. Non-blocking in Node JS

Non-blocking means Asynchronous in Node JS

A non-blocking call is to provide a callback function that is to be called when operation is complete

Allow single thread processes multiple request at the same time. (More efficient, More performant)

Reference

10. URL module in Node: Split up a web address into readable parts, eg:

var url = require("url");
var adr = "http://localhost:8080/default.htm?year=2021&month=september";
var q = url.parse(adr, true);

console.log(q.host); //returns 'localhost:8080'
console.log(q.pathname); //returns '/default.htm'
console.log(q.search); //returns '?year=2021&month=september'

var qdata = q.query; //returns an object: { year: 2021, month: 'september' }
console.log(qdata.month); //returns 'september'

11. In NodeJS, a way of making http request: using const https = require('https');

12. NodeJS runtime environment: is an environment which your application is running in

13. Please read event loop for NodeJS: How NodeJS works?

14. NodeJS Error handlings:

2 types of errors:

  • operational errors:
    • fail to connect with the server
    • request timeout
    • socket hang up
    • user invalid input
  • programmer errors:
    • did not catch a rejected promise
    • pass an object where a string is required
    • forget to do the garbage collection

15. NodeJS error stack:

const errorObject = new Error("Error message");
console.log(error.stack); // point where the error occurred

16. Common ways to do error handlings in NodeJS:

1). using try { ... } catch (error) { ... }

for example:

const asyncTask = async () => {
  try {
    const t1 = await task1();
    const t2 = await task2();

    return [...t1, ...t2];
  } catch (error) {
    console.lot(error);
  } finally {
    // if has something need to clean up
    await cleanup();
  }
};

2). using process.on('uncaughtException, callback):

This is a good way to capture the uncaughtException (programmer typed) errors

3). using middleware

For example:

// middleware error handling example
const erorrHandler = (error, req, res, next) => {
  console.log(`Error: ${error.message}`);
  const status = error.status || 400;
  res.status(status).send({ error: error.message });
};

// use the middleware
app.use(erorrHandler);

Reference

4). using Logging system (eg: winston + morgan) to log all the errors either to a log file or to cloud to store all the error messages

To sum up: (The most important conceptual steps !!)

Step 1: create your own error handler class Step 2: write all the error handler functions and ensure its all re-usable Step 3: using some logging tools to minitor the errors inside your node app

17. NodeJS error handlings code peices (Recall only)

const express = require("express");
const axios = require("axios");
const app = express();

// express way (expresss API) to handle errors
app.get("/expresshandler", (req, res) => {
  // res.send("response for request");
  let error = new Error(`Error occurred at ${req.url}`);
  error.statusCode = 400;
  // error.message = `Error occurred at ${req.url}`;
  throw error;
  // res.status(400).send({ error: error.message });
});

// try catch way of handling errors
app.get("/asyncerror", async (req, res, next) => {
  try {
    throw new Error("Error occurred (async function demo) ...");
  } catch (error) {
    next(error);
  }
});

// middleware error handling example
const erorrHandler = (error, req, res, next) => {
  console.log(`Error: ${error.message}`);
  const status = error.status || 400;
  res.status(status).send({ error: error.message });
};

const invalidPathHandler = (request, response, next) => {
  response.status(404);
  response.send({ error: "invalid path" });
};

app.get("/products", async (req, res, next) => {
  try {
    const apiResponse = await axios.get("http://localhost:3001/products");
    const jsonResponse = apiResponse.data;

    res.send(jsonResponse);
  } catch (error) {
    next(error);
  }
});

// we can add more than 1 middlware for handling different errors ~~
app.use(erorrHandler);
app.use(invalidPathHandler);

app.listen(3829, () => {
  console.log("Server is up ..");
});

18. What is Error.captureStackTrace():

For instance:

const fun1 = () => {
  fun2();
};
const fun2 = () => {
  fun3();
};
const fun3 = () => {
  log_stack();
};
function log_stack() {
  let err = {};
  Error.captureStackTrace(err);
  console.log(err.stack);
}
fun1();

// Error
//     at log_stack (<anonymous>:6:11)
//     at fun3 (<anonymous>:3:22)
//     at fun2 (<anonymous>:2:22)
//     at fun1 (<anonymous>:1:22)
//     at <anonymous>:9:1

Explanantion: As you can see, the error stack will call each level of the related functions (from bottom to top) Also reflects the location of the specific error (Easier for developer to do som debuggings)

19. Node JS tips for interview:

(0). What is NodeJS:

Node.js is an open-source server side runtime environment built on Chrome's V8 JavaScript engine. It provides an event driven, non-blocking (asynchronous) I/O and cross-platform runtime environment for building highly scalable server-side applications using JavaScript.

(1). What is NodeJs process model:

NodeJS run in a single process and application code run in a single thread which cost less resources (better performance). Althpugh NodeJS is single threaded, each of I/O requests will be handled asynchrounously which means single thread does not need to wait the request to complete before handling the next request.

(2). NodeJS has one more type JavaScript does not have which is Buffer, Buffer is mainly used for storing the binary data, when reading a file or receing some packets from network.

var buffer = new Buffer(string, [encoding]);

(3). Concept of URL module in NodeJS: mainly for splitting up the web address into few readable parts, eg:

var url = require("url");
var adr = "http://localhost:8080/default.htm?year=2021&month=september";
var q = url.parse(adr, true);

console.log(q.host); //returns 'localhost:8080'
console.log(q.pathname); //returns '/default.htm'
console.log(q.search); //returns '?year=2021&month=september'

var qdata = q.query; //returns an object: { year: 2021, month: 'september' }
console.log(qdata.month); //returns 'september'

(4). What is NodeJS runtime mean?

Step 1: Runtime is just an environment your application is running in

Step 2: NodeJS runtime is a software stack which is responsible for installing the web services code and its dependencies and run the web services.

(5). How NodeJS work?

Step 1: Clients send request to server

Step 2: NodeJS server starts preparing a thread pool for providing services in order to handle the client requests

Step 3: NodeJS server receives requests and put requests into event queue.

Step 4: NodeJS uses its own component event loop to handle the requests by checking the event queue.

Step 5: If event queue has no tasks, waiting until it has some, else, event loop starts handling requests.

Step 5.5 If requests does not need any blocking I/O operations, the handling process will be asynchronous, which means requests can be handled at teh same time without any waiting. Else, handle the request step by step.

Step 6: After handled the reuqests, will send th response back to client side.

Check the flow diagram !!

(6). What is error-first callback in NodeJS? (Please remember a good practice is always check the error first ~~)

fs.readFile("file.json", function(err, data) {
  if (err) {
    console.error(err);
  }
  console.log(data);
});

(7). Eslint can be used for keeping code styling cosnistent

(8). How can we secure HTTP cookies in order to prevent XSS attack? Answer: using HttpOnly attribute, eg: Set-Cookie: [name]=[value]; HttpOnly

(9). Node comes with REPL (Read, Eval, Print, Loop) computer environment, similar to Shell (Liunx/Unix) and command prompt.

  • Read: Read the user input and parse it to JavaScript data structure
  • Eval: The parsed JavaScript structure is evaluated for the results
  • Print: The result will be printed after evalution process
  • Loop: Loop the input command

(10). Difference between Asychronous and Non-blocking: Asychrnous does not respond immediately, but Non-blocking does respond immediately if the data is available and not simply returns an error !!!!

(11). Using node-inspector to debug NodeJS application ~

(12). EventEmitter in NodeJS:

const events = require("events");
const eventEmitter = new events.EventEmitter();

// listener #1
const listener1 = function listener1() {
  console.log("listener1 executed.");
};

// listener #2
const listener2 = function listener2() {
  console.log("listener2 executed.");
};

// Bind the connection event with the listener1 function
eventEmitter.addListener("connection", listener1);

// Bind the connection event with the listener2 function
eventEmitter.on("connection", listener2);

let eventListeners = eventEmitter.listenerCount("connection");
console.log(eventListeners + " Listener(s) listening to connection event");

// Fire the connection event
eventEmitter.emit("connection");

// Remove the binding of listener1 function
eventEmitter.removeListener("connection", listener1);
console.log("Listener1 will not listen now.");

// Fire the connection event
eventEmitter.emit("connection");

eventListeners = eventEmitter.listenerCount("connection");
console.log(eventListeners + " Listener(s) listening to connection event");

console.log("Program Ended.");

(13). Read & Write a stream

  • fs.createReadStream('input.txt')
  • fs.createWriteStream('output.txt')

Reference

(14). A security middleware worth trying: Helmet, which is used for prevent XSS, clickJacking attacks, and keep using HTTPS, one line only: app.use(helmet())

(15). A good module for doing the validation on user input: Joi

Example of using Joi for validation handling

// define the helper
function validateUser(user) {
  const JoiSchema = Joi.object({
    username: Joi.string()
      .min(5)
      .max(30)
      .required(),
    email: Joi.string()
      .email()
      .min(5)
      .max(50)
      .optional(),
    date_of_birth: Joi.date().optional(),
    account_status: Joi.string()
      .valid("activated")
      .valid("unactivated")
      .optional(),
  }).options({ abortEarly: false });

  return JoiSchema.validate(user);
}

const userExample = {
  username: "damengrandom",
  email: "damengrandom@test.co",
  date_of_birth: "2000-07-07",
  account_status: "activated",
};

let response = validateUser(userExample);

if (response.error) {
  console.log(response.error.details);
} else {
  console.log("validation passed ✅");
}

(16). uncaughtException in NodeJS:

process.on("uncaughtException", function(err) {
  console.log("Caught exception: " + err);
});

(17). JIT (Just In Time) Compiler in NodeJS: NodeJS relies on V8 (JS engine) to excute its code, and one of core peices of V8 is using JIT to execute JS at higher speed (One advantage of using NodeJS is less CPU cost)

(18). Difference between PUT and PATCH: PUT requires developer to send the full payload as request, but PATCH only requires developers to send the only attributes which need to be updated as request

(19). About NodeJS child_process module: please read this article

(20). Is NodeJS entirely based on a single-thread? Answer: Yes, its true, NodeJS processes all requests from a single thread. Meanwhile, it is also worth to be memorized that NodeJS makes use of events and callbacks to handle number of requests asynchronously.

(21). How to use request package to make a POS request?

var request = require("request");
request.post(
  "http://www.example.com/action",
  { form: { key: "value" } },
  function(error, response, body) {
    if (!error && response.statusCode == 200) {
      console.log(body);
    }
  }
);

(22). How to create a http server using NodeJS?

const http = require("http");
const requestListener = function(req, res) {
  res.writeHead(200, { "Content-Type": "text/plain" });
  res.end("Welcome viewers ..");
};

let server = http.createServer(requestListener);
server.listen(8276);

(23). Difference between operational errors and programmer errors in NodeJS?

Answer:

  • Pperational errors are not bugs, it is more related with system errors, like request timeout, hardware failures
  • Programmer errors are actual bugs created by developers during writing the code.

(24). Advantages of using ExpressJS:

  • Have mioddlware functionalities support
  • Easier to do database integrations
  • Template engine functionality which allows develoepr to embed backend variables into HTML files

(25). How NodeJS resolves blocking I/O operations? Answer: Event Loop, which convert all request tasks into callbacks ~

(26). What is LTS (Long Term Support) releases in NodeJS?

Answer: a stable version, which received the past crticial errors or bug fixes (better choice)

(27). Difference between process.nextTick() and setImmediate() in NodeJS?

Answer:

  • process.nextTick(): simply calls the callback function once the ongoing execution of event loop is finished
  • setImmeidate(): execute the callback function on the next cycle of event loop and it give back event loop to execute any other I/O operations

(28). Difference between req.params and req.query in NodeJS?

Answer: params is a part of path in URL and which are URL variables, and query is a part of URL and which assign values to specific parameters

(29). multer: A package for handling file upload ~

(30). dotenv: is acpakge which is used for inject global variables into the NodeJS codebase ~

(31). ExpressJS app.all() function:

// In ExpressJS, we can define a route which support all type of request, one of good examples are using all route to proof a API has been called, eg:

app.all("/user", (req, res, next) => {
  console.log("User API called");
  next();
});

(32). readFileSync vs readFile in NodeJS

// Blocking
const fs = require("fs");
const data = fs.readFileSync("/file.md"); // blocks here until file is read
console.log(data);
moreWork(); // will run after console.log

// Non-blocking
const fs = require("fs");
fs.readFile("/file.md", (err, data) => {
  if (err) throw err;
  console.log(data);
});
moreWork(); // will run before console.log

(33). next() in ExpressJS: it tells your application to run next middleware !!!!

20.