first commit
This commit is contained in:
parent
cd22ca442d
commit
c19b7b9c8c
20
README.md
20
README.md
@ -1 +1,19 @@
|
|||||||
# dsql
|
# Datasquirel
|
||||||
|
|
||||||
|
## Instalation
|
||||||
|
|
||||||
|
### Package manager
|
||||||
|
|
||||||
|
Using npm:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ npm install datasquirel
|
||||||
|
```
|
||||||
|
|
||||||
|
Once the package is installed, you can import the library using `require` approach:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const datasquirel = require("datasquirel");
|
||||||
|
```
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
4
index.js
4
index.js
@ -18,11 +18,11 @@ const get = require("./utils/get");
|
|||||||
* ==============================================================================
|
* ==============================================================================
|
||||||
* @param {Object} mailObject - foundUser if any
|
* @param {Object} mailObject - foundUser if any
|
||||||
*/
|
*/
|
||||||
const dsql = {
|
const datasquirel = {
|
||||||
get: get,
|
get: get,
|
||||||
};
|
};
|
||||||
|
|
||||||
module.exports = dsql;
|
module.exports = datasquirel;
|
||||||
|
|
||||||
/** ********************************************** */
|
/** ********************************************** */
|
||||||
/** ********************************************** */
|
/** ********************************************** */
|
||||||
|
52
package.json
52
package.json
@ -1,28 +1,28 @@
|
|||||||
{
|
{
|
||||||
"name": "dsql",
|
"name": "datasquirel",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"description": "Cloud-based SQL data management tool",
|
"description": "Cloud-based SQL data management tool",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "echo \"Error: no test specified\" && exit 1"
|
"test": "echo \"Error: no test specified\" && exit 1"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/BenjaminToby/dsql.git"
|
"url": "git+https://github.com/BenjaminToby/dsql.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"SQL",
|
"SQL",
|
||||||
"Cloud",
|
"Cloud",
|
||||||
"Cloud",
|
"Cloud",
|
||||||
"Storage",
|
"Storage",
|
||||||
"API",
|
"API",
|
||||||
"Data",
|
"Data",
|
||||||
"Storage"
|
"Storage"
|
||||||
],
|
],
|
||||||
"author": "Benjamin Toby",
|
"author": "Benjamin Toby",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/BenjaminToby/dsql/issues"
|
"url": "https://github.com/BenjaminToby/dsql/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/BenjaminToby/dsql#readme"
|
"homepage": "https://github.com/BenjaminToby/dsql#readme"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user