Vanilla JavaScript (IIFE) for older browsers
The IIFE distribution targets browsers which don't support ECMAScript modules.
The files are located inside the packages/csv-stringify/dist/iife
folder. Import them inside your project or use NPM to download the package and to reference them.
It is globally available in the page context with:
- Stream and callback API:
csv_stringify.stringify(/* arguments */);
- Sync API:
csv_stringify_sync.stringify(/* arguments */);
Example
A working demo is available in the demo/browser
directory:
With Express, expose the files with:
const app = express();
app.use('/lib/stringify/',
express.static(`node_modules/csv-stringify/dist/iife/`));
app.listen(3000);
The HTML code looks like:
<script src="/lib/stringify/index.js"></script>
<script>
csv_stringify.stringify(records, options, (err, data) => {
console.info(data)
});
</script>
If you wish to use the sync API, use:
<script src="/lib/stringify/sync.js"></script>
<script>
const data = csv_stringify_sync.stringify(records, options);
</script>