File system
var fs = require("fs")
2. Asynchronous and Synchronous
Functions that read file contents include asynchronous () and synchronous ().
var fs = require('fs') ( '','utf-8', function (err,data) { if( err ) { (err) }else{ ( "not aynsc===>" + data ) } }) ('app started') var rlt = ('') ('rlt====>'+ rlt )
Thank you for reading, I hope it can help you. Thank you for your support for this site!