bru-js
v0.2.0
Published
Javascript Parser library for the Bru markup language.
Downloads
2
Readme
bru-js
Javascript Parser library for the Bru markup language.
Installation
npm install bru-js
Usage
const {parse, stringify} = require('bru-js');
const bru = parse(`
http: {
method: 'GET'
url: 'https://www.usebruno.com/hello'
headers: {
Content-Type: 'application/json'
}
}
`);
console.log(stringify(bru));
License
MIT