strip-json-comments alternatives and similar modules
Based on the "Parsing" category.
Alternatively, view strip-json-comments alternatives based on common mentions on social networks and blogs.
-
markdown-it
Markdown parser, done right. 100% CommonMark support, extensions, syntax plugins & high speed -
remark
remark is a popular tool that transforms markdown with plugins. These plugins can inspect and change your markup. You can use remark on the server, the client, CLIs, deno, etc. -
nearley
๐๐๐ฒ Simple, fast, powerful parser toolkit for JavaScript. -
parse5
HTML parsing/serialization toolset for Node.js. WHATWG HTML Living Standard (aka HTML5)-compliant. -
@parcel/css
An extremely fast CSS parser, transformer, bundler, and minifier written in Rust. -
fast-xml-parser
Validate XML, Parse XML and Build XML rapidly without C/C++ based libraries and no callback. -
google-libphonenumber
The up-to-date and reliable Google's libphonenumber package for node.js. -
csv-parser
Streaming csv parser inspired by binary-csv that aims to be faster than everyone else -
xlsx-populate
Excel XLSX parser/generator written in JavaScript with Node.js and browser support, jQuery/d3-style method chaining, encryption, and a focus on keeping existing workbook features and styles in tact. -
json-mask
Tiny language and engine for selecting specific parts of a JS object, hiding the rest. -
json-query
Retrieves values from JSON objects for data binding -
Awesome phonenumber parser
Google's libphonenumber pre-compiled with the closure compiler -
excel-stream
Streaming Excel spreadsheet to JSON parser. -
safe-json-value
โ๏ธ JSON serialization should never fail -
binary-extract
Extract a value from a buffer of json without parsing the whole thing -
parsec ๐
๐ Tiniest body parser in the universe. Built for modern Node.js -
docx-to-pdf-on-AWS-Lambda
Microsoft Word doc/docx to PDF conversion on AWS Lambda using Node.js
AWS Cloud-aware infrastructure-from-code toolbox [NEW]
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of strip-json-comments or a related project?
README
strip-json-comments
Strip comments from JSON. Lets you use comments in your JSON files!
This is now possible:
{
// Rainbows
"unicorn": /* โค */ "cake"
}
It will replace single-line comments //
and multi-line comments /**/
with whitespace. This allows JSON error positions to remain as close as possible to the original source.
Also available as a Gulp/Grunt/Broccoli plugin.
Install
npm install strip-json-comments
Usage
import stripJsonComments from 'strip-json-comments';
const json = `{
// Rainbows
"unicorn": /* โค */ "cake"
}`;
JSON.parse(stripJsonComments(json));
//=> {unicorn: 'cake'}
API
stripJsonComments(jsonString, options?)
jsonString
Type: string
Accepts a string with JSON and returns a string without comments.
options
Type: object
trailingCommas
Type: boolean
\
Default: false
Strip trailing commas in addition to comments.
whitespace
Type: boolean
\
Default: true
Replace comments and trailing commas with whitespace instead of stripping them entirely.
Benchmark
npm run bench
Related
- strip-json-comments-cli - CLI for this module
- strip-css-comments - Strip comments from CSS
Get professional support for this package with a Tidelift subscription Tidelift helps make open source sustainable for maintainers while giving companiesassurances about security, maintenance, and licensing for their dependencies.