Compare commits
No commits in common. "main" and "2022.12.29" have entirely different histories.
main
...
2022.12.29
11 changed files with 67 additions and 390 deletions
11
.github/dependabot.yml
vendored
11
.github/dependabot.yml
vendored
|
@ -1,11 +0,0 @@
|
|||
# To get started with Dependabot version updates, you'll need to specify which
|
||||
# package ecosystems to update and where the package manifests are located.
|
||||
# Please see the documentation for all configuration options:
|
||||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
|
||||
|
||||
version: 2
|
||||
updates:
|
||||
- package-ecosystem: "npm" # See documentation for possible values
|
||||
directory: "/" # Location of package manifests
|
||||
schedule:
|
||||
interval: "weekly"
|
|
@ -4,7 +4,7 @@ on:
|
|||
types: [created]
|
||||
jobs:
|
||||
Publish-NPM:
|
||||
runs-on: node1
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
|
@ -13,11 +13,6 @@ jobs:
|
|||
with:
|
||||
node-version: '16.x'
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
scope: '@thundernetworkrad'
|
||||
- name: Install Dependencies
|
||||
run: npm i
|
||||
- name: Build
|
||||
run: npm run build
|
||||
- name: Publish package on NPM 📦
|
||||
run: npm publish --access public
|
||||
env:
|
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
|||
node_modules
|
||||
package-lock.json
|
||||
build
|
||||
package-lock.json
|
7
README.md
Normal file
7
README.md
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Warning
|
||||
|
||||
This version didn't work, this is a work in project, you can use quickmap.db util we finish.
|
||||
|
||||
# Database
|
||||
|
||||
A quick-deploy database server
|
13
SECURITY.md
13
SECURITY.md
|
@ -1,13 +0,0 @@
|
|||
# Security Policy
|
||||
|
||||
## Supported Versions
|
||||
|
||||
| Version | Supported |
|
||||
| ---------- | ------------------ |
|
||||
| 2023.02.06 | ✅ |
|
||||
| 2023.02.05 | ✅ |
|
||||
| < 2023.02 | ❌ |
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
For report a vulnerability pls go [Here](https://github.com/ThunderNetworkRaD/mit.db/issues), open a new issue.
|
32
index.js
Normal file
32
index.js
Normal file
|
@ -0,0 +1,32 @@
|
|||
var colors = require('colors');
|
||||
var readlineSync = require('readline-sync');
|
||||
var server = require('./src/server.js');
|
||||
server('gui')
|
||||
|
||||
class mitdb {
|
||||
/**
|
||||
* @constructor
|
||||
* @param type This can be 'client' or 'server'
|
||||
* @param link If type = client, this is the server address (with the port), if type = server, this is the port
|
||||
* @example (client) http://0.0.0.0:12934
|
||||
* @example (server) 12934
|
||||
*/
|
||||
|
||||
constructor (type, link) {
|
||||
this.type = type;
|
||||
this.link = link;
|
||||
if (type == 'client') {
|
||||
|
||||
} else if (type == 'server') {
|
||||
server('api')
|
||||
} else {
|
||||
throw new Error('Type is required')
|
||||
}
|
||||
}
|
||||
server
|
||||
}
|
||||
|
||||
module.export = mitdb
|
||||
/*
|
||||
{}
|
||||
*/
|
22
package.json
22
package.json
|
@ -1,25 +1,27 @@
|
|||
{
|
||||
"name": "mit.db",
|
||||
"version": "2023.04.12",
|
||||
"description": "An easy and quick database",
|
||||
"main": "build/index.js",
|
||||
"types": "build/index.d.ts",
|
||||
"version": "2022.12.29",
|
||||
"description": "An online server for quickmap.db",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"build": "tsc"
|
||||
"test": "node index.js"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/ThunderNetworkRaD/mit.db.git"
|
||||
},
|
||||
"author": "ThunderNetworkRaD | Killer Boss Original",
|
||||
"keywords": [
|
||||
"Database"
|
||||
],
|
||||
"author": "Thunder Network RaD | Killer Boss Original",
|
||||
"license": "ISC",
|
||||
"bugs": {
|
||||
"url": "https://github.com/ThunderNetworkRaD/mit.db/issues"
|
||||
},
|
||||
"homepage": "https://github.com/ThunderNetworkRaD/mit.db#readme",
|
||||
"devDependencies": {
|
||||
"@types/node": "^18.14.0",
|
||||
"tslib": "^2.4.1",
|
||||
"typescript": "^5.0.3"
|
||||
"dependencies": {
|
||||
"colors": "^1.4.0",
|
||||
"quickmap.db": "^2022.12.29",
|
||||
"readline-sync": "^1.4.10"
|
||||
}
|
||||
}
|
||||
|
|
97
readme.md
97
readme.md
|
@ -1,97 +0,0 @@
|
|||
# Mit.db
|
||||
|
||||
```js
|
||||
const MitDB = require('mit.db');
|
||||
const db = new MitDB('file.db'); // this is the save file's name + extension
|
||||
async function sample() {
|
||||
// assuming 'somekey' exists in the Map and has a value { cool: false }
|
||||
const data = db.get('somekey');
|
||||
// reassigning the 'cool' property a new value
|
||||
data.cool = true;
|
||||
await db.set('somekey', data);
|
||||
// now 'somekey' has a new value { cool: true }
|
||||
}
|
||||
```
|
||||
|
||||
### Docs
|
||||
|
||||
#### Installation
|
||||
|
||||
With **npm**:
|
||||
|
||||
`npm i mit.db`
|
||||
|
||||
|
||||
#### Setup
|
||||
|
||||
```js
|
||||
const MitDB = require('mit.db')
|
||||
const db = new MitDB('database.json') // this is the save file's name + extension
|
||||
```
|
||||
|
||||
#### set()
|
||||
|
||||
```js
|
||||
await db.set('ciao', 'hello')
|
||||
await db.set('arrivederci', 'bye')
|
||||
```
|
||||
|
||||
#### get()
|
||||
|
||||
```js
|
||||
var ansa = db.get('ciao') // ansa = hello
|
||||
```
|
||||
|
||||
#### has()
|
||||
|
||||
```js
|
||||
var asnb = db.has('arrivederci') // ansb = true
|
||||
```
|
||||
|
||||
#### entries()
|
||||
|
||||
```js
|
||||
var ansc = db.entries() // ansc = [ 'ciao', 'hello' ], [ 'arrivederci', 'bye' ] ]
|
||||
```
|
||||
|
||||
#### keys()
|
||||
|
||||
```js
|
||||
var ansd = db.keys() // ansd = [ 'ciao', 'arrivederci' ]
|
||||
```
|
||||
|
||||
#### values()
|
||||
|
||||
```js
|
||||
var anse = db.values() // anse = [ 'hello', 'bye' ]
|
||||
```
|
||||
|
||||
#### forEach()
|
||||
|
||||
```js
|
||||
db.forEach((value, key) => console.log(value, key)) // console.log = hello ciao
|
||||
// console.log = bye arrivederci
|
||||
```
|
||||
|
||||
#### delete()
|
||||
|
||||
```js
|
||||
// [{"key":"ciao","value":"hello"}, {"key":"arrivederci","value":"bye"}]
|
||||
await db.delete('ciao')
|
||||
// [{"key":"arrivederci","value":"bye"}]
|
||||
```
|
||||
|
||||
#### clear()
|
||||
|
||||
```js
|
||||
// [{"key":"ciao","value":"hello"}, {"key":"arrivederci","value":"bye"}]
|
||||
await db.delete('ciao')
|
||||
// []
|
||||
```
|
||||
|
||||
#### size()
|
||||
|
||||
```js
|
||||
// [{"key":"ciao","value":"hello"}, {"key":"arrivederci","value":"bye"}]
|
||||
var ansf = db.size() // size = 2
|
||||
```
|
146
src/index.ts
146
src/index.ts
|
@ -1,146 +0,0 @@
|
|||
import { promisify } from 'util';
|
||||
import * as fs from 'fs';
|
||||
|
||||
const writeDB = promisify(fs.writeFile);
|
||||
|
||||
class MitDB {
|
||||
readonly db;
|
||||
filename: string;
|
||||
options: any;
|
||||
dirname: string;
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @param filename If not set, MapDB will only use internal memory
|
||||
* @example 'file.db'
|
||||
* @param options Options to pass in the constructor
|
||||
* @param options.dirname where to put the database?
|
||||
*/
|
||||
constructor(filename: string, options?: { dirname: string }) {
|
||||
if (options && options.dirname) {
|
||||
this.dirname = options.dirname;
|
||||
} else {
|
||||
this.dirname = 'data';
|
||||
}
|
||||
|
||||
this.filename = filename;
|
||||
|
||||
if (!fs.existsSync(this.dirname)) fs.mkdirSync(this.dirname);
|
||||
|
||||
this.db = `./${this.dirname}/${this.filename}`;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
* @param value
|
||||
*/
|
||||
async set(key: string | number, value: any) {
|
||||
try {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
const i = data.findIndex((pair: any) => pair.key == key);
|
||||
|
||||
!data[i] ? data.push({ key, value }) : data[i] = { key, value };
|
||||
|
||||
await writeDB(this.db, JSON.stringify(data));
|
||||
return data;
|
||||
} catch {
|
||||
await writeDB(this.db, `[${JSON.stringify({ key, value })}]`).then(() => {
|
||||
return JSON.parse(fs.readFileSync(this.db).toString());
|
||||
});
|
||||
}
|
||||
|
||||
return 'error'
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
*/
|
||||
|
||||
get(key: string | number) {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.find((pair: any) => pair.key == key)?.value || undefined;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
*/
|
||||
has(key: string | number) {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.find((pair: any) => pair.key == key) ? true : false;
|
||||
}
|
||||
|
||||
entries() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.map((pair: any) => [pair.key, pair.value]);
|
||||
}
|
||||
|
||||
keys() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.map((pair: any) => pair.key);
|
||||
}
|
||||
|
||||
values() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.map((pair: any) => pair.value);
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param callbackfilename
|
||||
*/
|
||||
forEach(callback: (value: any, key: any) => void) {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
data.forEach((pair: any) => callback(pair.value, pair.key));
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @param key
|
||||
*/
|
||||
async delete(key: string | number) {
|
||||
try {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
const i = data.findIndex((pair: any) => pair.key == key);
|
||||
|
||||
if (data[i]) {
|
||||
data.splice(i, 1);
|
||||
await writeDB(this.db, JSON.stringify(data));
|
||||
|
||||
return true;
|
||||
}
|
||||
} catch {}
|
||||
return 'error';
|
||||
}
|
||||
|
||||
async clear() {
|
||||
await writeDB(this.db, JSON.stringify([])).catch(() => {});
|
||||
}
|
||||
|
||||
size() {
|
||||
const file = fs.readFileSync(this.db);
|
||||
const data: any[] = JSON.parse(file.toString());
|
||||
|
||||
return data.length;
|
||||
}
|
||||
}
|
||||
|
||||
export = MitDB;
|
14
src/server.js
Normal file
14
src/server.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
/*module.exports = function (interface) {
|
||||
if (interface == 'gui') {
|
||||
async function home() {
|
||||
std.cin('MitDB >'.red)
|
||||
.then((cmd) => {
|
||||
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
*/
|
||||
/*
|
||||
{}
|
||||
*/
|
105
tsconfig.json
105
tsconfig.json
|
@ -1,105 +0,0 @@
|
|||
{
|
||||
"compilerOptions": {
|
||||
/* Visit https://aka.ms/tsconfig to read more about this file */
|
||||
|
||||
/* Projects */
|
||||
"incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
||||
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
||||
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
||||
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
||||
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
||||
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
||||
|
||||
/* Language and Environment */
|
||||
"target": "ESNext", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
||||
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
||||
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
||||
// "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
|
||||
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
||||
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
||||
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
||||
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
||||
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
||||
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
||||
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
||||
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
||||
|
||||
/* Modules */
|
||||
"module": "CommonJS", /* Specify what module code is generated. */
|
||||
"rootDir": "src", /* Specify the root folder within your source files. */
|
||||
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
||||
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
||||
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
||||
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
||||
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
||||
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
||||
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
||||
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
||||
// "resolveJsonModule": true, /* Enable importing .json files. */
|
||||
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
||||
|
||||
/* JavaScript Support */
|
||||
"allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
||||
"checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
||||
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
||||
|
||||
/* Emit */
|
||||
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
||||
"declarationMap": true, /* Create sourcemaps for d.ts files. */
|
||||
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
||||
"sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
||||
// "outFile": "./build.js", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
||||
"outDir": "build", /* Specify an output folder for all emitted files. */
|
||||
"removeComments": true, /* Disable emitting comments. */
|
||||
// "noEmit": true, /* Disable emitting files from a compilation. */
|
||||
"importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
||||
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
||||
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
||||
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
||||
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
||||
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
||||
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
||||
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
||||
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
||||
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
||||
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
||||
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
||||
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
||||
"declarationDir": "build", /* Specify the output directory for generated declaration files. */
|
||||
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
||||
|
||||
/* Interop Constraints */
|
||||
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
||||
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
||||
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
||||
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
||||
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
||||
|
||||
/* Type Checking */
|
||||
"strict": true, /* Enable all strict type-checking options. */
|
||||
"noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
||||
"strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
||||
"strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
||||
"strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
||||
"strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
||||
"noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
||||
"useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
||||
"alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
||||
"noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
||||
"noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
||||
"exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
||||
"noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
||||
"noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
||||
"noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
||||
"noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
||||
"noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
||||
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
||||
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
||||
|
||||
/* Completeness */
|
||||
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
||||
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
||||
},
|
||||
// "include": [],
|
||||
"exclude": ["node_modules", "logs", "build", "d", "test.js"]
|
||||
}
|
Loading…
Reference in a new issue