Compare commits
No commits in common. "main" and "v2023.01.29" have entirely different histories.
main
...
v2023.01.2
9 changed files with 116 additions and 29 deletions
12
.github/workflows/npm-publish.yml
vendored
12
.github/workflows/npm-publish.yml
vendored
|
@ -4,7 +4,7 @@ on:
|
||||||
types: [created]
|
types: [created]
|
||||||
jobs:
|
jobs:
|
||||||
Publish-NPM:
|
Publish-NPM:
|
||||||
runs-on: node1
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -14,10 +14,6 @@ jobs:
|
||||||
node-version: '16.x'
|
node-version: '16.x'
|
||||||
registry-url: 'https://registry.npmjs.org'
|
registry-url: 'https://registry.npmjs.org'
|
||||||
scope: '@thundernetworkrad'
|
scope: '@thundernetworkrad'
|
||||||
- name: Install Dependencies
|
|
||||||
run: npm i
|
|
||||||
- name: Build
|
|
||||||
run: npm run build
|
|
||||||
- name: Publish package on NPM 📦
|
- name: Publish package on NPM 📦
|
||||||
run: npm publish --access public
|
run: npm publish --access public
|
||||||
env:
|
env:
|
||||||
|
@ -26,7 +22,7 @@ jobs:
|
||||||
REGISTRY2: 'registry=https://registry.npmjs.org/'
|
REGISTRY2: 'registry=https://registry.npmjs.org/'
|
||||||
|
|
||||||
Publish-GitHub-NPM:
|
Publish-GitHub-NPM:
|
||||||
runs-on: node1
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -36,10 +32,6 @@ jobs:
|
||||||
node-version: '16.x'
|
node-version: '16.x'
|
||||||
registry-url: 'https://npm.pkg.github.com'
|
registry-url: 'https://npm.pkg.github.com'
|
||||||
scope: '@thundernetworkrad'
|
scope: '@thundernetworkrad'
|
||||||
- name: Install Dependencies
|
|
||||||
run: npm i
|
|
||||||
- name: Build
|
|
||||||
run: npm run build
|
|
||||||
- name: Publish package on NPM 📦
|
- name: Publish package on NPM 📦
|
||||||
run: npm publish --access public
|
run: npm publish --access public
|
||||||
env:
|
env:
|
||||||
|
|
13
index.ts
Normal file
13
index.ts
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
//import { appendFile, existsSync } from 'node:fs';
|
||||||
|
//import { mkdir } from 'node:fs/promises';
|
||||||
|
import getTime from './src/getTime.js';
|
||||||
|
import log from './src/log.js';
|
||||||
|
import cin from './src/cin.js';
|
||||||
|
import cout from './src/cout.js'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
getTime,
|
||||||
|
log,
|
||||||
|
cin,
|
||||||
|
cout
|
||||||
|
}
|
10
package.json
10
package.json
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "@thundernetworkrad/std",
|
"name": "@thundernetworkrad/std",
|
||||||
"version": "2023.02.05",
|
"version": "2023.01.29",
|
||||||
"description": "Standard module for JavaScript / TypeScript",
|
"description": "Standard module for JavaScript / TypeScript",
|
||||||
"main": "build/index.js",
|
"main": "build/index.js",
|
||||||
"types": "build/index.d.ts",
|
"types": "dist/index.d.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "tsc"
|
"install": "tsc"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -26,12 +26,8 @@
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/ThunderNetworkRaD/std#readme",
|
"homepage": "https://github.com/ThunderNetworkRaD/std#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@thundernetworkrad/logs": "^2023.2.5-1",
|
|
||||||
"@thundernetworkrad/readline-sync": "^2023.1.26-2",
|
"@thundernetworkrad/readline-sync": "^2023.1.26-2",
|
||||||
"@thundernetworkrad/time": "^2023.2.5-2",
|
|
||||||
"@types/node": "^18.11.18",
|
"@types/node": "^18.11.18",
|
||||||
"node-cin": "^2023.2.5",
|
|
||||||
"node-cout": "^2023.2.5-1",
|
|
||||||
"tslib": "^2.5.0",
|
"tslib": "^2.5.0",
|
||||||
"typescript": "^4.9.4"
|
"typescript": "^4.9.4"
|
||||||
}
|
}
|
||||||
|
|
22
src/cin.ts
Normal file
22
src/cin.ts
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
import readlineSync from '@thundernetworkrad/readline-sync';
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param question what question you need to make?
|
||||||
|
* @param hide is the question private?
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
function cin (question: string, hide: boolean) {
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
try {
|
||||||
|
let answer: string = readlineSync.question(`${question} `, {
|
||||||
|
hideEchoBack: hide || false
|
||||||
|
})
|
||||||
|
return resolve(answer);
|
||||||
|
} catch (e) {
|
||||||
|
console.log(e)
|
||||||
|
return resolve('error');
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
export default cin;
|
35
src/cout.ts
Normal file
35
src/cout.ts
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
let debug: number, logs1: boolean|undefined|null;
|
||||||
|
import getTime from './getTime.js';
|
||||||
|
import log from './log.js';
|
||||||
|
export default class createCout {
|
||||||
|
/**
|
||||||
|
* @constructor
|
||||||
|
* @param debugLevel from what debug level you want to log?
|
||||||
|
* @param logs do you want files log?
|
||||||
|
*/
|
||||||
|
constructor (debugLevel: number, logs?: boolean) {
|
||||||
|
if (!debugLevel) debugLevel = 0;
|
||||||
|
if (!logs) logs = false;
|
||||||
|
debug = debugLevel;
|
||||||
|
logs1 = logs;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param string what to log?
|
||||||
|
* @param debugLevel from what debug level this will logged?
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
cout (string: string, debugLevel?: number) {
|
||||||
|
if (!debugLevel) debugLevel = 0;
|
||||||
|
var time = getTime();
|
||||||
|
|
||||||
|
if (debug >= debugLevel) {
|
||||||
|
console.log(`[${time.year}.${time.month}.${time.day}-${time.hours}:${time.minutes}:${time.seconds}] | ${String(string)}`);
|
||||||
|
if (logs1) {
|
||||||
|
log(`[${time.year}.${time.month}.${time.day}-${time.hours}:${time.minutes}:${time.seconds}] | ${String(string)}`);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
};
|
||||||
|
}
|
16
src/getTime.ts
Normal file
16
src/getTime.ts
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @returns
|
||||||
|
*/
|
||||||
|
function getTime () {
|
||||||
|
const date_time = new Date();
|
||||||
|
const year = date_time.getFullYear();
|
||||||
|
const month = parseInt(("0" + (date_time.getMonth() + 1)).slice(-2));
|
||||||
|
const day = parseInt(("0" + date_time.getDate()).slice(-2));
|
||||||
|
const hours = date_time.getHours();
|
||||||
|
const minutes = date_time.getMinutes();
|
||||||
|
const seconds = date_time.getSeconds();
|
||||||
|
return({year, month, day, hours, minutes, seconds})
|
||||||
|
};
|
||||||
|
export default getTime;
|
11
src/index.ts
11
src/index.ts
|
@ -1,11 +0,0 @@
|
||||||
import { getTime } from '@thundernetworkrad/time';
|
|
||||||
import { log } from '@thundernetworkrad/logs';
|
|
||||||
import { cin } from 'node-cin';
|
|
||||||
import { createCout } from 'node-cout';
|
|
||||||
|
|
||||||
export default {
|
|
||||||
getTime,
|
|
||||||
log,
|
|
||||||
cin,
|
|
||||||
createCout
|
|
||||||
}
|
|
24
src/log.ts
Normal file
24
src/log.ts
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
import { appendFile, existsSync } from 'node:fs';
|
||||||
|
import { mkdir } from 'node:fs/promises';
|
||||||
|
import getTime from './getTime.js';
|
||||||
|
|
||||||
|
let time;
|
||||||
|
const startTime = getTime();
|
||||||
|
time = startTime;
|
||||||
|
const name = `${time.year}.${time.month}.${time.day}.${time.hours}.${time.minutes}.${time.seconds}.log`;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param string to log
|
||||||
|
*/
|
||||||
|
function log (string?: string) {
|
||||||
|
if (!existsSync('./logs')) mkdir('./logs', { recursive: true });
|
||||||
|
|
||||||
|
appendFile(`./logs/${name}`, string+'\n', (err: any) => {
|
||||||
|
if (err) {
|
||||||
|
throw err
|
||||||
|
}
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
export default log;
|
|
@ -26,7 +26,7 @@
|
||||||
|
|
||||||
/* Modules */
|
/* Modules */
|
||||||
"module": "CommonJS", /* Specify what module code is generated. */
|
"module": "CommonJS", /* Specify what module code is generated. */
|
||||||
"rootDir": "src", /* Specify the root folder within your source files. */
|
"rootDir": "./", /* Specify the root folder within your source files. */
|
||||||
"moduleResolution": "node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
"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. */
|
// "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. */
|
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
||||||
|
|
Loading…
Reference in a new issue