Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 487 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 487 Bytes

Simple Demonstration of an ETL Pipeline in Node Js

How to Run Demo

  1. npm install
  2. npm start

A new json file will be created in the root directory with transformed dataset.

The demo covers:

1. Data extraction

From jsonplaceholder api

2. Data Transformation

  1. Removed some datapoints
  2. Renamed some datapoints

3. Load

Wrote the transformed dataset to a json file. Could be a db or API

This is just a simple demo to demonstrate the ETL Pipeline concept:)