Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
A simplified RTF parser.
$ npm install --save rtf-parse
const rtfParse = require( 'rtf-parse' ),
path = require( 'path' );
rtfParse.parseFile( path.join( '_fixtures', 'rtfSimple.rtf' ) )
.then( doc => {
// Do anything you like with rtf.model.Document instance of your document.
} );
const rtfParse = require( 'rtf-parse' );
rtfParse.parseString( '{\\rtf1 foobar}' )
.then( doc => {
// Do anything you like with rtf.model.Document instance of your document.
} );
You can find more usage examples in examples directory.
Also you could also browse tests to see how the API is used.
This is fully open source pet project, if you feel you're in a mood for a pull request, you're more than welcome to do so!
You can always ping me at Twitter @m_lewand.
MIT © Marek Lewandowski
FAQs
A simplified RTF parser.
The npm package rtf-parse receives a total of 50 weekly downloads. As such, rtf-parse popularity was classified as not popular.
We found that rtf-parse 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.