Skip to content

Instantly share code, notes, and snippets.

@pprathameshmore
Created March 27, 2020 09:19
Show Gist options
  • Save pprathameshmore/de0174bf086bb702ee1d74635c74e6c2 to your computer and use it in GitHub Desktop.
Save pprathameshmore/de0174bf086bb702ee1d74635c74e6c2 to your computer and use it in GitHub Desktop.
const express = require('express');
const app = express();
const fs = require('fs');
fs.open('sample.txt', 'r+', (err, fd) => {
if (err) {
throw err;
}
console.log('File is opened');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment