Use the fs module for creating directories and files of different formats

PHOTO EMBED

Tue Apr 22 2025 18:36:46 GMT+0000 (Coordinated Universal Time)

Saved by @fsd

const fs = require('fs');
const path = require('path');

// Create directory
fs.mkdirSync(path.join(__dirname, 'output'), { recursive: true });

// Create text file
fs.writeFileSync(path.join(__dirname, 'output', 'note.txt'), 'This is a text file.');

// Create JSON file
const data = { name: 'Node', type: 'runtime' };
fs.writeFileSync(path.join(__dirname, 'output', 'data.json'), JSON.stringify(data, null, 2));
content_copyCOPY