first commit

This commit is contained in:
Tben 2023-05-03 07:25:12 +01:00
parent cd22ca442d
commit c19b7b9c8c
3 changed files with 47 additions and 29 deletions

View File

@ -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

View File

@ -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;
/** ********************************************** */ /** ********************************************** */
/** ********************************************** */ /** ********************************************** */

View File

@ -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"
} }