JSFiddle - React, Tailwind, and code Playground

by Sergey Kalabin

JavaScript

d3.text('http://nemetz.devg.ru/d3/stream.csv', function (body) {
    var lines = body.match(/[^\r\n]+/g)
    lines.forEach(function (line) {
        d3.select('body').append('div').text(line)
    })
})