Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
csv-visualizer
Advanced tools
A visualizer that parses CSV data and renders it in a table in Postman or in a browser.
A visualizer that parses CSV data and renders it in a table in Postman or in a browser.
The following code...
<script src="https://unpkg.com/csv-visualizer@1.0.0/dist/csv-vizualizer.min.js"></script>
<script>
const CSV = '"h1","h2","h3"\n"r1c1","r1c2","r1c3"\n"r2c1","r2c2","r2c3"';
CsvVisualizer.visualize(CSV);
</script>
...generates a table like this:
Complete example available in example.html.
Pick a request that returns CSV data
Copy the following code in the Tests tab:
const template = `<script src="https://unpkg.com/csv-visualizer@latest/dist/csv-visualizer.min.js"></script>
<script>
pm.getData((err, data) => {
CsvVisualizer.visualize(data.csvString);
});
</script>`;
const csvString = pm.response.text();
pm.visualizer.set(template, { csvString });
Run the request and open the response's Visualize tab
CsvVisualizer.visualize(
csvString,
(rootElement = document.body),
(options = null)
);
csvString
- the CSV string that holds the table data
rootElement
- optional, the root DOM element to witch the content is appended. If not specified, document.body
is used.
options
- optional, an object that contains the table and parser options:
Property | Type | Default | Description |
---|---|---|---|
showHeader | boolean | true | Whether the table should have a header that indicates the number of rows. |
parserOptions | Object | {} | CSV parser options. See Papa Parse Config. |
This project uses Papa Parse (MIT License) for CSV parsing.
FAQs
A visualizer that parses CSV data and renders it in a table in Postman or in a browser.
The npm package csv-visualizer receives a total of 6 weekly downloads. As such, csv-visualizer popularity was classified as not popular.
We found that csv-visualizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.