35 lines
1.1 KiB
Markdown
35 lines
1.1 KiB
Markdown
# Bellande Format JavaScript Example
|
|
|
|
```
|
|
// Example usage
|
|
const bellandeFormatter = new BellandeFormat();
|
|
|
|
// Parse a Bellande file
|
|
const parsedData = bellandeFormatter.parseBellande('path/to/your/file.bellande');
|
|
console.log(parsedData);
|
|
|
|
// Write data to a Bellande file
|
|
const dataToWrite = { key: 'value', list: [1, 2, 3] };
|
|
bellandeFormatter.writeBellande(dataToWrite, 'path/to/output/file.bellande');
|
|
```
|
|
|
|
## Website NPM
|
|
- https://www.npmjs.com/package/bellande_format
|
|
|
|
### Installation
|
|
- `npm i bellande_format`
|
|
|
|
|
|
```
|
|
Name: bellande_format
|
|
Version: 0.1.0
|
|
Summary: File type Formats
|
|
Home-page: github.com/RonaldsonBellande/bellande_format
|
|
Author: Ronaldson Bellande
|
|
Author-email: ronaldsonbellande@gmail.com
|
|
License: GNU General Public License v3.0
|
|
```
|
|
|
|
## License
|
|
This Algorithm or Models is distributed under the [Creative Commons Attribution-ShareAlike 4.0 International License](http://creativecommons.org/licenses/by-sa/4.0/), see [LICENSE](https://github.com/RonaldsonBellande/bellande_format/blob/main/LICENSE) and [NOTICE](https://github.com/RonaldsonBellande/bellande_format/blob/main/LICENSE) for more information.
|