Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 730 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 730 Bytes

NodeAsync

Writing file in parallel using Async parallel

Problem Statement : Requirement is to write file in parllel into disk reading the content from a xml/json/csv file in parallel more efficiently.

Steps to execute :

To install required dependencies

npm i

To write file to disk

node server.js

Output is available in /build folder

Reference : http://caolan.github.io/async/docs.html#parallel

Async is a utility module which provides straight-forward, powerful functions for working with asynchronous JavaScript. Although originally designed for use with Node.js and installable via npm install --save async, it can also be used directly in the browser.

For Documentation, visit http://caolan.github.io/async/