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));
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter