// https://[Log in to view URL]

const { createReadStream } = require('fs')
const { createInterface } = require('readline')

async function main() {
    const input = createReadStream('/etc/passwd')
    const rl = createInterface({ input, crlfDelay: Infinity })
    for await (const line of rl) {
        console.log(JSON.stringify(line))
    }
}

main().catch(console.error)

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: