-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f32e7f1
commit 86049ce
Showing
9 changed files
with
2,948 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# nosqldbm-converter | ||
|
||
[![NPM version][npm-version-image]][npm-url] | ||
[![NPM downloads][npm-downloads-image]][npm-downloads-url] | ||
[![MIT License][license-image]][license-url] | ||
[![FOSSA Status][fossa-badge-image]][fossa-badge-url] | ||
|
||
Convert https://nosqldbm.ru/ JSON data to Moongose Schema. | ||
|
||
# Getting started | ||
1. Design your database on https://nosqldbm.ru/. | ||
2. View JSON and Copy clipboard. | ||
3. Save it as a file raw.json. | ||
4. Load your schemas. | ||
|
||
```js | ||
const nosqldbmConverter = require('nosqldbm-converter') | ||
const rawJSON = require('./raw.json'); | ||
|
||
console.log(nosqldbmConverter(rawJSON)); | ||
``` | ||
|
||
# License | ||
This package is freely distributable under the terms of the [MIT license](https://github.com/vovikhangcdv/nosqldbm-converter/blob/main/LICENSE). | ||
|
||
[![FOSSA Status][fossa-large-image]][fossa-large-url] | ||
|
||
[license-image]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat | ||
[license-url]: LICENSE | ||
|
||
[npm-url]: https://npmjs.org/package/nosqldbm-converter | ||
[npm-version-image]: https://img.shields.io/npm/v/nosqldbm-converter.svg?style=flat | ||
|
||
[npm-downloads-image]: https://img.shields.io/npm/dm/nosqldbm-converter.svg?style=flat | ||
[npm-downloads-url]: https://npmcharts.com/compare/nosqldbm-converter?minimal=true | ||
|
||
[fossa-badge-image]: https://app.fossa.com/api/projects/git%2Bgithub.com%2Fvovikhangcdv%2Fnosqldbm-converter.svg?type=shield | ||
[fossa-badge-url]: https://app.fossa.com/projects/git%2Bgithub.com%2Fvovikhangcdv%2Fnosqldbm-converter?ref=badge_shield | ||
|
||
[fossa-large-image]: https://app.fossa.com/api/projects/git%2Bgithub.com%2Fvovikhangcdv%2Fnosqldbm-converter.svg?type=large | ||
[fossa-large-url]: https://app.fossa.com/projects/git%2Bgithub.com%2Fvovikhangcdv%2Fnosqldbm-converter?ref=badge_large |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
module.exports = require('./source/convert.js'); |
Oops, something went wrong.