harperdb 3.1.1 → 3.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/BinObjects.jsc +0 -0
- package/bin/harperdb.js +1 -1
- package/bin/harperdb.jsc +0 -0
- package/bin/install.jsc +0 -0
- package/bin/register.jsc +0 -0
- package/bin/run.jsc +0 -0
- package/bin/stop.jsc +0 -0
- package/bin/upgrade.jsc +0 -0
- package/bin/utility.jsc +0 -0
- package/bin/version.jsc +0 -0
- package/coverage/lcov.info +14536 -17045
- package/data_layer/CreateAttributeObject.jsc +0 -0
- package/data_layer/CreateTableObject.jsc +0 -0
- package/data_layer/DataLayerObjects.jsc +0 -0
- package/data_layer/DeleteBeforeObject.jsc +0 -0
- package/data_layer/DeleteObject.jsc +0 -0
- package/data_layer/DropAttributeObject.jsc +0 -0
- package/data_layer/InsertObject.jsc +0 -0
- package/data_layer/ReadTransactionLogObject.jsc +0 -0
- package/data_layer/SQLSearch.jsc +0 -0
- package/data_layer/SearchByConditionsObject.jsc +0 -0
- package/data_layer/SearchByHashObject.jsc +0 -0
- package/data_layer/SearchObject.jsc +0 -0
- package/data_layer/SqlSearchObject.jsc +0 -0
- package/data_layer/UpdateObject.jsc +0 -0
- package/data_layer/UpsertObject.jsc +0 -0
- package/data_layer/bulkLoad.jsc +0 -0
- package/data_layer/data_objects/BulkLoadObjects.jsc +0 -0
- package/data_layer/data_objects/UpsertObject.jsc +0 -0
- package/data_layer/delete.jsc +0 -0
- package/data_layer/export.jsc +0 -0
- package/data_layer/harperBridge/BridgeMethods.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/checkForNewAttr.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/convertOperationToTransaction.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/evaluateTableGetAttributes.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/insertUpdateReturnObj.jsc +0 -0
- package/data_layer/harperBridge/bridgeUtility/insertUpdateValidate.jsc +0 -0
- package/data_layer/harperBridge/harperBridge.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/LMDBBridge.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/DeleteTransactionsBeforeResults.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateAttribute.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateSchema.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbCreateTable.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteRecordsBefore.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDeleteTransactionLogsBefore.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropAttribute.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropSchema.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbDropTable.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByHash.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbGetDataByValue.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbReadTransactionLog.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByConditions.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByHash.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbSearchByValue.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpdateRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbMethods/lmdbUpsertRecords.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBCreateAttributeObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBDeleteTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBInsertTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBUpdateTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/LMDBUpsertTransactionObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/TableSizeObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/ThreadSearchObject.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/initializeHashSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/initializePaths.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbCheckForNewAttributes.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbCreateTransactionsEnvironment.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbDropAllAttributes.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbGetTableSize.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbProcessRows.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbThreadSearch.jsc +0 -0
- package/data_layer/harperBridge/lmdbBridge/lmdbUtility/lmdbWriteTransaction.jsc +0 -0
- package/data_layer/hdbInfoController.jsc +0 -0
- package/data_layer/insert.jsc +0 -0
- package/data_layer/readTransactionLog.jsc +0 -0
- package/data_layer/schema.jsc +0 -0
- package/data_layer/schemaDescribe.jsc +0 -0
- package/data_layer/search.jsc +0 -0
- package/data_layer/update.jsc +0 -0
- package/events/ClusterStatusEmitter.jsc +0 -0
- package/events/SioServerStoppedEvent.jsc +0 -0
- package/events/SocketClusterStatusEmitter.jsc +0 -0
- package/node_modules/@pm2/js-api/node_modules/async/CHANGELOG.md +275 -0
- package/node_modules/@pm2/js-api/node_modules/async/LICENSE +19 -0
- package/node_modules/@pm2/js-api/node_modules/async/README.md +56 -0
- package/node_modules/@pm2/js-api/node_modules/async/all.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/allLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/allSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/any.js +52 -0
- package/node_modules/@pm2/js-api/node_modules/async/anyLimit.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/anySeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/apply.js +68 -0
- package/node_modules/@pm2/js-api/node_modules/async/applyEach.js +51 -0
- package/node_modules/@pm2/js-api/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/asyncify.js +110 -0
- package/node_modules/@pm2/js-api/node_modules/async/auto.js +289 -0
- package/node_modules/@pm2/js-api/node_modules/async/autoInject.js +170 -0
- package/node_modules/@pm2/js-api/node_modules/async/bower.json +17 -0
- package/node_modules/@pm2/js-api/node_modules/async/cargo.js +94 -0
- package/node_modules/@pm2/js-api/node_modules/async/compose.js +58 -0
- package/node_modules/@pm2/js-api/node_modules/async/concat.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/concatLimit.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/concatSeries.js +36 -0
- package/node_modules/@pm2/js-api/node_modules/async/constant.js +66 -0
- package/node_modules/@pm2/js-api/node_modules/async/detect.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/detectLimit.js +48 -0
- package/node_modules/@pm2/js-api/node_modules/async/detectSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/dir.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.js +5609 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.min.js +2 -0
- package/node_modules/@pm2/js-api/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/@pm2/js-api/node_modules/async/doDuring.js +66 -0
- package/node_modules/@pm2/js-api/node_modules/async/doUntil.js +39 -0
- package/node_modules/@pm2/js-api/node_modules/async/doWhilst.js +59 -0
- package/node_modules/@pm2/js-api/node_modules/async/during.js +76 -0
- package/node_modules/@pm2/js-api/node_modules/async/each.js +82 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachLimit.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOf.js +111 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/eachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/@pm2/js-api/node_modules/async/every.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/everyLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/everySeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/filter.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/filterLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/filterSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/find.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/findLimit.js +48 -0
- package/node_modules/@pm2/js-api/node_modules/async/findSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/foldl.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/foldr.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEach.js +82 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOf.js +111 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/forever.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupBy.js +54 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/@pm2/js-api/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/index.js +582 -0
- package/node_modules/@pm2/js-api/node_modules/async/inject.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/filter.js +75 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/iterator.js +58 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/map.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/notId.js +10 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/once.js +15 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/queue.js +204 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/reject.js +21 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/slice.js +16 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/@pm2/js-api/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/@pm2/js-api/node_modules/async/log.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/map.js +54 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapSeries.js +36 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValues.js +63 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/@pm2/js-api/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/memoize.js +101 -0
- package/node_modules/@pm2/js-api/node_modules/async/nextTick.js +51 -0
- package/node_modules/@pm2/js-api/node_modules/async/package.json +110 -0
- package/node_modules/@pm2/js-api/node_modules/async/parallel.js +90 -0
- package/node_modules/@pm2/js-api/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/@pm2/js-api/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/@pm2/js-api/node_modules/async/queue.js +130 -0
- package/node_modules/@pm2/js-api/node_modules/async/race.js +70 -0
- package/node_modules/@pm2/js-api/node_modules/async/reduce.js +78 -0
- package/node_modules/@pm2/js-api/node_modules/async/reduceRight.js +44 -0
- package/node_modules/@pm2/js-api/node_modules/async/reflect.js +81 -0
- package/node_modules/@pm2/js-api/node_modules/async/reflectAll.js +105 -0
- package/node_modules/@pm2/js-api/node_modules/async/reject.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/retry.js +156 -0
- package/node_modules/@pm2/js-api/node_modules/async/retryable.js +65 -0
- package/node_modules/@pm2/js-api/node_modules/async/select.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/selectLimit.js +37 -0
- package/node_modules/@pm2/js-api/node_modules/async/selectSeries.js +35 -0
- package/node_modules/@pm2/js-api/node_modules/async/seq.js +91 -0
- package/node_modules/@pm2/js-api/node_modules/async/series.js +85 -0
- package/node_modules/@pm2/js-api/node_modules/async/setImmediate.js +45 -0
- package/node_modules/@pm2/js-api/node_modules/async/some.js +52 -0
- package/node_modules/@pm2/js-api/node_modules/async/someLimit.js +43 -0
- package/node_modules/@pm2/js-api/node_modules/async/someSeries.js +38 -0
- package/node_modules/@pm2/js-api/node_modules/async/sortBy.js +91 -0
- package/node_modules/@pm2/js-api/node_modules/async/timeout.js +89 -0
- package/node_modules/@pm2/js-api/node_modules/async/times.js +50 -0
- package/node_modules/@pm2/js-api/node_modules/async/timesLimit.js +42 -0
- package/node_modules/@pm2/js-api/node_modules/async/timesSeries.js +32 -0
- package/node_modules/@pm2/js-api/node_modules/async/transform.js +87 -0
- package/node_modules/@pm2/js-api/node_modules/async/tryEach.js +81 -0
- package/node_modules/@pm2/js-api/node_modules/async/unmemoize.js +25 -0
- package/node_modules/@pm2/js-api/node_modules/async/until.js +41 -0
- package/node_modules/@pm2/js-api/node_modules/async/waterfall.js +113 -0
- package/node_modules/@pm2/js-api/node_modules/async/whilst.js +72 -0
- package/node_modules/@pm2/js-api/node_modules/async/wrapSync.js +110 -0
- package/node_modules/@pm2/js-api/package.json +3 -1
- package/node_modules/adler-32/package.json +1 -0
- package/node_modules/ajv/package.json +0 -1
- package/node_modules/async/CHANGELOG.md +0 -6
- package/node_modules/async/package.json +12 -15
- package/node_modules/async-limiter/package.json +1 -0
- package/node_modules/{fastify-compress → avvio}/.github/dependabot.yml +5 -1
- package/node_modules/avvio/.github/workflows/ci.yml +34 -11
- package/node_modules/avvio/.taprc +1 -1
- package/node_modules/avvio/README.md +17 -15
- package/node_modules/avvio/boot.js +15 -9
- package/node_modules/avvio/index.d.ts +1 -1
- package/node_modules/avvio/node_modules/debug/LICENSE +10 -9
- package/node_modules/avvio/node_modules/debug/README.md +24 -1
- package/node_modules/avvio/node_modules/debug/package.json +20 -20
- package/node_modules/avvio/node_modules/debug/src/common.js +15 -2
- package/node_modules/avvio/package.json +15 -15
- package/node_modules/avvio/plugin.js +5 -4
- package/node_modules/avvio/test/after-and-ready.test.js +27 -27
- package/node_modules/avvio/test/after-pass-through.test.js +3 -3
- package/node_modules/avvio/test/async-await.test.js +1 -1
- package/node_modules/avvio/test/await-after.test.js +12 -12
- package/node_modules/avvio/test/await-self.test.js +6 -6
- package/node_modules/avvio/test/await-use.test.js +1 -1
- package/node_modules/avvio/test/basic.test.js +14 -14
- package/node_modules/avvio/test/callbacks.test.js +1 -1
- package/node_modules/avvio/test/close.test.js +64 -21
- package/node_modules/avvio/test/esm.mjs +1 -1
- package/node_modules/avvio/test/events-listeners.test.js +1 -0
- package/node_modules/avvio/test/express.test.js +1 -1
- package/node_modules/avvio/test/override.test.js +27 -27
- package/node_modules/avvio/test/plugin-timeout.test.js +18 -18
- package/node_modules/avvio/test/pretty-print.test.js +1 -1
- package/node_modules/avvio/test/to-json.test.js +5 -5
- package/node_modules/avvio/test/types/index.ts +7 -0
- package/node_modules/axios/CHANGELOG.md +0 -23
- package/node_modules/axios/README.md +1 -3
- package/node_modules/axios/dist/axios.js +1 -21
- package/node_modules/axios/dist/axios.map +1 -1
- package/node_modules/axios/dist/axios.min.js +2 -2
- package/node_modules/axios/dist/axios.min.map +1 -1
- package/node_modules/axios/index.d.ts +2 -3
- package/node_modules/axios/lib/adapters/http.js +12 -28
- package/node_modules/axios/lib/axios.js +0 -3
- package/node_modules/axios/package.json +10 -10
- package/node_modules/big-integer/BigInteger.d.ts +1 -1
- package/node_modules/big-integer/BigInteger.js +2 -2
- package/node_modules/big-integer/BigInteger.min.js +1 -1
- package/node_modules/big-integer/README.md +2 -1
- package/node_modules/big-integer/package.json +15 -15
- package/node_modules/cfb/CHANGELOG.md +27 -0
- package/node_modules/cfb/README.md +0 -2
- package/node_modules/cfb/cfb.js +46 -203
- package/node_modules/cfb/dist/cfb.js +46 -203
- package/node_modules/cfb/dist/cfb.min.js +2 -2
- package/node_modules/cfb/dist/cfb.min.map +1 -1
- package/node_modules/cfb/dist/xlscfb.js +45 -202
- package/node_modules/cfb/package.json +12 -12
- package/node_modules/cfb/xlscfb.flow.js +45 -202
- package/node_modules/clone/README.md +3 -19
- package/node_modules/clone/clone.js +1 -7
- package/node_modules/clone/package.json +12 -11
- package/node_modules/cookie/HISTORY.md +6 -0
- package/node_modules/cookie/README.md +49 -20
- package/node_modules/cookie/index.js +11 -11
- package/node_modules/cookie/package.json +18 -16
- package/node_modules/fast-deep-equal/package.json +2 -1
- package/node_modules/fast-json-stringify/.github/dependabot.yml +4 -0
- package/node_modules/fast-json-stringify/.github/workflows/benchmark.yml +111 -0
- package/node_modules/fast-json-stringify/.github/workflows/ci.yml +32 -16
- package/node_modules/fast-json-stringify/.taprc +0 -1
- package/node_modules/fast-json-stringify/README.md +24 -17
- package/node_modules/fast-json-stringify/bench.js +28 -0
- package/node_modules/fast-json-stringify/example.js +1 -3
- package/node_modules/fast-json-stringify/index.d.ts +1 -0
- package/node_modules/fast-json-stringify/index.js +175 -116
- package/node_modules/fast-json-stringify/package.json +13 -12
- package/node_modules/fast-json-stringify/test/allof.test.js +63 -11
- package/node_modules/fast-json-stringify/test/any.test.js +25 -25
- package/node_modules/fast-json-stringify/test/anyof.test.js +92 -22
- package/node_modules/fast-json-stringify/test/array.test.js +66 -3
- package/node_modules/fast-json-stringify/test/basic.test.js +3 -3
- package/node_modules/fast-json-stringify/test/date.test.js +1 -1
- package/node_modules/fast-json-stringify/test/debug-mode.test.js +4 -4
- package/node_modules/fast-json-stringify/test/defaults.test.js +1 -1
- package/node_modules/fast-json-stringify/test/enum.test.js +37 -0
- package/node_modules/fast-json-stringify/test/inferType.test.js +1 -1
- package/node_modules/fast-json-stringify/test/integer.test.js +44 -1
- package/node_modules/fast-json-stringify/test/nestedObjects.test.js +1 -1
- package/node_modules/fast-json-stringify/test/nullable.test.js +1 -1
- package/node_modules/fast-json-stringify/test/oneof.test.js +145 -17
- package/node_modules/fast-json-stringify/test/recursion.test.js +180 -0
- package/node_modules/fast-json-stringify/test/ref.test.js +54 -7
- package/node_modules/fast-json-stringify/test/required.test.js +10 -10
- package/node_modules/fast-json-stringify/test/requiresAjv.test.js +48 -0
- package/node_modules/fast-json-stringify/test/sanitize.test.js +2 -2
- package/node_modules/fast-json-stringify/test/side-effect.test.js +7 -7
- package/node_modules/fast-json-stringify/test/types/test.ts +8 -0
- package/node_modules/fast-json-stringify/test/typesArray.test.js +26 -26
- package/node_modules/fast-json-stringify/test/webpack.test.js +50 -0
- package/node_modules/fastify/README.md +3 -3
- package/node_modules/fastify/docs/ContentTypeParser.md +0 -21
- package/node_modules/fastify/docs/Ecosystem.md +0 -1
- package/node_modules/fastify/docs/Request.md +1 -1
- package/node_modules/fastify/docs/Server.md +1 -23
- package/node_modules/fastify/docs/Serverless.md +10 -17
- package/node_modules/fastify/docs/Style-Guide.md +2 -2
- package/node_modules/fastify/fastify.js +0 -3
- package/node_modules/fastify/lib/contentTypeParser.js +7 -28
- package/node_modules/fastify/lib/errors.js +1 -1
- package/node_modules/fastify/lib/reply.js +15 -11
- package/node_modules/fastify/lib/route.js +1 -1
- package/node_modules/fastify/node_modules/semver/package.json +10 -10
- package/node_modules/fastify/node_modules/semver/ranges/subset.js +67 -7
- package/node_modules/fastify/package.json +11 -11
- package/node_modules/fastify/test/content-parser.test.js +7 -179
- package/node_modules/fastify/test/custom-parser.test.js +2 -262
- package/node_modules/fastify/test/pretty-print.test.js +0 -28
- package/node_modules/fastify/test/schema-special-usage.test.js +0 -46
- package/node_modules/fastify/test/stream.test.js +0 -90
- package/node_modules/fastify/test/types/instance.test-d.ts +0 -2
- package/node_modules/fastify/test/types/logger.test-d.ts +3 -8
- package/node_modules/fastify/test/types/schema.test-d.ts +1 -41
- package/node_modules/fastify/test/versioned-routes.test.js +18 -61
- package/node_modules/fastify/types/content-type-parser.d.ts +4 -4
- package/node_modules/fastify/types/instance.d.ts +5 -11
- package/node_modules/fastify/types/logger.d.ts +1 -1
- package/node_modules/fastify/types/route.d.ts +11 -14
- package/node_modules/fastify/types/schema.d.ts +4 -4
- package/node_modules/{light-my-request → fastify-compress}/.dependabot/config.yml +1 -1
- package/node_modules/fastify-compress/.github/workflows/ci.yml +1 -10
- package/node_modules/fastify-compress/index.js +0 -12
- package/node_modules/fastify-compress/node_modules/mime-db/HISTORY.md +33 -0
- package/node_modules/fastify-compress/node_modules/mime-db/README.md +0 -2
- package/node_modules/fastify-compress/node_modules/mime-db/db.json +167 -9
- package/node_modules/fastify-compress/node_modules/mime-db/package.json +17 -17
- package/node_modules/fastify-compress/package.json +11 -11
- package/node_modules/fastify-compress/test/test-routes-compress.js +0 -27
- package/node_modules/fastify-cors/README.md +11 -18
- package/node_modules/fastify-cors/index.d.ts +55 -66
- package/node_modules/fastify-cors/index.js +83 -131
- package/node_modules/fastify-cors/package.json +11 -11
- package/node_modules/fastify-cors/test/cors.test.js +3 -250
- package/node_modules/fastify-cors/test/index.test-d.ts +1 -65
- package/node_modules/fastify-cors/test/preflight.test.js +1 -61
- package/node_modules/{fastify-helmet → fastify-error}/.github/dependabot.yml +5 -1
- package/node_modules/fastify-error/.github/workflows/ci.yml +24 -8
- package/node_modules/fastify-error/README.md +8 -5
- package/node_modules/fastify-error/index.d.ts +1 -2
- package/node_modules/fastify-error/index.test-d.ts +1 -1
- package/node_modules/fastify-error/package.json +12 -12
- package/node_modules/fastify-helmet/.dependabot/config.yml +5 -0
- package/node_modules/fastify-helmet/.github/workflows/ci.yml +0 -9
- package/node_modules/fastify-helmet/README.md +2 -2
- package/node_modules/fastify-helmet/benchmarks/express.js +3 -3
- package/node_modules/fastify-helmet/benchmarks/koa.js +2 -2
- package/node_modules/fastify-helmet/index.js +0 -2
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/.github/workflows/ci.yml +18 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/.taprc +5 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/LICENSE +21 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/README.md +144 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/package.json +69 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.d.ts +36 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.js +126 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/plugin.test-d.ts +72 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/stackParser.js +11 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/bundlers.test.js +85 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/checkVersion.test.js +73 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/composite.test.js +16 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/esm/esm.mjs +34 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/esm/index.test.js +19 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/mu1tip1e.composite.test.js +16 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/stackParser.test.js +48 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/test/test.js +307 -0
- package/node_modules/fastify-helmet/node_modules/fastify-plugin/tsconfig.json +8 -0
- package/node_modules/fastify-helmet/node_modules/semver/CHANGELOG.md +111 -0
- package/node_modules/fastify-helmet/node_modules/semver/LICENSE +15 -0
- package/node_modules/fastify-helmet/node_modules/semver/README.md +566 -0
- package/node_modules/fastify-helmet/node_modules/semver/bin/semver.js +173 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/comparator.js +135 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/index.js +5 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/range.js +510 -0
- package/node_modules/fastify-helmet/node_modules/semver/classes/semver.js +287 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/clean.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/cmp.js +48 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/coerce.js +51 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare-build.js +7 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare-loose.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/compare.js +5 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/diff.js +23 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/eq.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/gt.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/gte.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/inc.js +15 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/lt.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/lte.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/major.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/minor.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/neq.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/parse.js +33 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/patch.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/prerelease.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/rcompare.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/rsort.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/satisfies.js +10 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/sort.js +3 -0
- package/node_modules/fastify-helmet/node_modules/semver/functions/valid.js +6 -0
- package/node_modules/fastify-helmet/node_modules/semver/index.js +48 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/constants.js +17 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/debug.js +9 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/identifiers.js +23 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/parse-options.js +11 -0
- package/node_modules/fastify-helmet/node_modules/semver/internal/re.js +182 -0
- package/node_modules/fastify-helmet/node_modules/semver/package.json +76 -0
- package/node_modules/fastify-helmet/node_modules/semver/preload.js +2 -0
- package/node_modules/fastify-helmet/node_modules/semver/range.bnf +16 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/gtr.js +4 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/intersects.js +7 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/ltr.js +4 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/min-version.js +60 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/outside.js +80 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/simplify.js +44 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/subset.js +222 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/to-comparators.js +8 -0
- package/node_modules/fastify-helmet/node_modules/semver/ranges/valid.js +11 -0
- package/node_modules/fastify-helmet/package.json +17 -17
- package/node_modules/fastify-helmet/test.js +0 -27
- package/node_modules/fastify-plugin/package.json +0 -1
- package/node_modules/{avvio → fastify-static}/.dependabot/config.yml +0 -0
- package/node_modules/fastify-static/.github/workflows/ci.yml +1 -10
- package/node_modules/fastify-static/README.md +0 -3
- package/node_modules/fastify-static/example/public/index.js +1 -1
- package/node_modules/fastify-static/example/server-compress.js +2 -5
- package/node_modules/fastify-static/example/server-dir-list.js +18 -25
- package/node_modules/fastify-static/example/server.js +1 -4
- package/node_modules/fastify-static/index.d.ts +2 -2
- package/node_modules/fastify-static/index.js +31 -64
- package/node_modules/fastify-static/node_modules/glob/README.md +4 -1
- package/node_modules/fastify-static/node_modules/glob/common.js +4 -8
- package/node_modules/fastify-static/node_modules/glob/glob.js +4 -7
- package/node_modules/fastify-static/node_modules/glob/package.json +18 -12
- package/node_modules/fastify-static/node_modules/glob/sync.js +4 -7
- package/node_modules/fastify-static/package.json +13 -14
- package/node_modules/fastify-static/test/dir-list.test.js +1 -5
- package/node_modules/fastify-static/test/static.test.js +2 -261
- package/node_modules/fastify-static/test/types/index.ts +1 -13
- package/node_modules/find-my-way/.taprc +4 -1
- package/node_modules/find-my-way/README.md +96 -6
- package/node_modules/find-my-way/index.d.ts +6 -5
- package/node_modules/find-my-way/index.js +72 -10
- package/node_modules/find-my-way/lib/constrainer.js +6 -2
- package/node_modules/find-my-way/lib/pretty-print.js +234 -33
- package/node_modules/find-my-way/node.js +25 -28
- package/node_modules/find-my-way/package.json +11 -11
- package/node_modules/find-my-way/test/constraint.custom-versioning.test.js +2 -2
- package/node_modules/find-my-way/test/constraint.custom.test.js +72 -10
- package/node_modules/find-my-way/test/constraint.default-versioning.test.js +24 -1
- package/node_modules/find-my-way/test/constraint.host.test.js +7 -7
- package/node_modules/find-my-way/test/constraints.test.js +19 -19
- package/node_modules/find-my-way/test/errors.test.js +25 -25
- package/node_modules/find-my-way/test/fastify-issue-3129.test.js +35 -0
- package/node_modules/find-my-way/test/full-url.test.js +8 -8
- package/node_modules/find-my-way/test/host-storage.test.js +15 -15
- package/node_modules/find-my-way/test/http2/constraint.host.test.js +45 -0
- package/node_modules/find-my-way/test/issue-104.test.js +41 -18
- package/node_modules/find-my-way/test/issue-110.test.js +1 -1
- package/node_modules/find-my-way/test/issue-132.test.js +9 -9
- package/node_modules/find-my-way/test/issue-145.test.js +6 -6
- package/node_modules/find-my-way/test/issue-151.test.js +2 -2
- package/node_modules/find-my-way/test/issue-17.test.js +92 -12
- package/node_modules/find-my-way/test/issue-175.test.js +51 -1
- package/node_modules/find-my-way/test/issue-182.test.js +19 -0
- package/node_modules/find-my-way/test/issue-28.test.js +21 -21
- package/node_modules/find-my-way/test/issue-46.test.js +13 -13
- package/node_modules/find-my-way/test/issue-49.test.js +4 -4
- package/node_modules/find-my-way/test/issue-59.test.js +1 -1
- package/node_modules/find-my-way/test/issue-63.test.js +1 -1
- package/node_modules/find-my-way/test/issue-67.test.js +1 -1
- package/node_modules/find-my-way/test/max-param-length.test.js +5 -5
- package/node_modules/find-my-way/test/methods.test.js +53 -53
- package/node_modules/find-my-way/test/on-bad-url.test.js +4 -4
- package/node_modules/find-my-way/test/optional-params.test.js +145 -0
- package/node_modules/find-my-way/test/path-params-match.test.js +12 -12
- package/node_modules/find-my-way/test/pretty-print.test.js +364 -9
- package/node_modules/find-my-way/test/regex.test.js +5 -5
- package/node_modules/find-my-way/test/routes-registered.test.js +4 -4
- package/node_modules/find-my-way/test/server.test.js +23 -23
- package/node_modules/find-my-way/test/store.test.js +4 -4
- package/node_modules/find-my-way/test/types/router.test-d.ts +62 -0
- package/node_modules/follow-redirects/debug.js +2 -1
- package/node_modules/follow-redirects/index.js +111 -42
- package/node_modules/follow-redirects/package.json +10 -10
- package/node_modules/helmet/CHANGELOG.md +27 -3
- package/node_modules/helmet/README.md +130 -27
- package/node_modules/helmet/dist/index.d.ts +21 -13
- package/node_modules/helmet/dist/index.js +111 -52
- package/node_modules/helmet/dist/middlewares/content-security-policy/index.d.ts +2 -1
- package/node_modules/helmet/dist/middlewares/content-security-policy/index.js +28 -11
- package/node_modules/helmet/dist/middlewares/cross-origin-embedder-policy/index.d.ts +3 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-embedder-policy/index.js +10 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-opener-policy/index.d.ts +6 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-opener-policy/index.js +19 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-resource-policy/index.d.ts +6 -0
- package/node_modules/helmet/dist/middlewares/cross-origin-resource-policy/index.js +19 -0
- package/node_modules/helmet/package.json +19 -18
- package/node_modules/ieee754/package.json +1 -2
- package/node_modules/inherits/package.json +0 -1
- package/node_modules/ipaddr.js/Changes.md +20 -0
- package/node_modules/ipaddr.js/ipaddr.min.js +1 -1
- package/node_modules/ipaddr.js/lib/ipaddr.js +66 -0
- package/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +1 -0
- package/node_modules/ipaddr.js/package.json +10 -10
- package/node_modules/{fastify-static → light-my-request}/.github/dependabot.yml +5 -1
- package/node_modules/light-my-request/.github/workflows/ci.yml +38 -12
- package/node_modules/light-my-request/README.md +5 -3
- package/node_modules/light-my-request/index.d.ts +6 -3
- package/node_modules/light-my-request/lib/parseURL.js +7 -4
- package/node_modules/light-my-request/lib/request.js +16 -6
- package/node_modules/light-my-request/lib/response.js +24 -11
- package/node_modules/light-my-request/node_modules/ajv/.runkit_example.js +23 -0
- package/node_modules/{@pm2/pm2-version-check/node_modules/ms/license.md → light-my-request/node_modules/ajv/LICENSE} +2 -1
- package/node_modules/light-my-request/node_modules/ajv/README.md +193 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.js +55 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2019.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.js +49 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.d.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.js +44 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/ajv.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.js +155 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/code.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.d.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.js +697 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.d.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.js +143 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/codegen/scope.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.d.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.js +123 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/errors.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.d.ts +80 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.js +242 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.js +350 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/parse.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.js +218 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/serialize.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.js +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/jtd/types.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.d.ts +20 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.js +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/names.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/ref_error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.d.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.js +155 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/resolve.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.d.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/rules.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.js +178 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/util.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.js +19 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/applicability.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.js +50 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/boolSchema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.js +202 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/dataType.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.js +35 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/defaults.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.d.ts +42 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.js +510 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.js +124 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/keyword.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.d.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.js +81 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/compile/validate/subschema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.d.ts +173 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.js +617 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/core.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.d.ts +45 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.js +66 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/jtd.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/data.json +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.js +28 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts +2 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-draft-06.json +137 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-draft-07.json +151 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/json-schema-secure.json +88 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.js +118 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/refs/jtd-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.js +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/equal.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.d.ts +18 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.js +184 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/parseJson.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/quote.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/re2.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.js +42 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/timestamp.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/ucs2length.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/uri.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.d.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.js +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/runtime/validation_error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.js +90 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.d.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.js +35 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/standalone/instance.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.d.ts +183 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.d.ts +124 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/json-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.d.ts +169 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/types/jtd-schema.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js +49 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js +106 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/additionalProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.js +23 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/allOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.d.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.js +95 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/contains.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.d.ts +21 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.js +85 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependencies.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.js +66 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/if.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.d.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.js +44 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.js +52 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/items2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/not.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.js +60 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/oneOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js +75 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/patternProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/prefixItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.js +54 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/properties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js +38 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/propertyNames.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.js +13 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/applicator/thenElse.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.d.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.js +131 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/code.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.js +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/id.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.js +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.js +122 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/core/ref.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.js +100 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.js +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/discriminator/types.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.js +23 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft2020.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.js +17 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/draft7.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js +30 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js +51 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.js +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.js +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/errors.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.js +92 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/format.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.js +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/format/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.js +71 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/discriminator.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/elements.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.js +43 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/enum.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.js +20 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/error.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.js +29 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.js +25 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/metadata.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.js +22 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/nullable.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/optionalProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.d.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.js +146 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/properties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.d.ts +4 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.js +67 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/ref.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.d.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.js +69 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/type.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/union.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.js +48 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/jtd/values.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.js +18 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/metadata.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.js +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/next.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.js +7 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js +40 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js +65 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.d.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.js +25 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/const.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.d.ts +5 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js +12 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/dependentRequired.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.js +47 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/enum.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.d.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.js +33 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/index.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.js +15 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitContains.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.js +27 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitLength.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.d.ts +11 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.js +27 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitNumber.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts +3 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/limitProperties.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.js +26 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/multipleOf.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.js +24 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/pattern.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.d.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.js +79 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/required.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js +64 -0
- package/node_modules/light-my-request/node_modules/ajv/dist/vocabularies/validation/uniqueItems.js.map +1 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/2019.ts +78 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/2020.ts +72 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/ajv.ts +67 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/code.ts +168 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/index.ts +832 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/codegen/scope.ts +215 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/errors.ts +184 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/index.ts +324 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/parse.ts +411 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/serialize.ts +260 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/jtd/types.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/names.ts +27 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/ref_error.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/resolve.ts +149 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/rules.ts +50 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/util.ts +213 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/applicability.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/boolSchema.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/dataType.ts +229 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/defaults.ts +32 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/index.ts +573 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/keyword.ts +171 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/compile/validate/subschema.ts +135 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/core.ts +887 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/jtd.ts +129 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/data.json +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/index.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/applicator.json +53 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/core.json +57 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/format.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2019-09/schema.json +39 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/index.ts +30 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/applicator.json +48 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/content.json +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/core.json +51 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/format-annotation.json +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/meta-data.json +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/unevaluated.json +15 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/meta/validation.json +90 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-2020-12/schema.json +55 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-draft-06.json +137 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-draft-07.json +151 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/json-schema-secure.json +88 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/refs/jtd-schema.ts +130 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/equal.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/parseJson.ts +176 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/quote.ts +31 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/re2.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/timestamp.ts +46 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/ucs2length.ts +20 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/uri.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/runtime/validation_error.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/standalone/index.ts +100 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/standalone/instance.ts +36 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/index.ts +240 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/json-schema.ts +186 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/types/jtd-schema.ts +263 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/additionalItems.ts +56 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/additionalProperties.ts +118 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/allOf.ts +22 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/anyOf.ts +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/contains.ts +109 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/dependencies.ts +112 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts +11 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/if.ts +80 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/index.ts +53 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/items.ts +59 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/items2020.ts +36 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/not.ts +38 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/oneOf.ts +82 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/patternProperties.ts +91 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/prefixItems.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/properties.ts +57 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/propertyNames.ts +50 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/applicator/thenElse.ts +13 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/code.ts +168 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/id.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/index.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/core/ref.ts +129 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/discriminator/index.ts +110 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/discriminator/types.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/draft2020.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/draft7.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/dynamicAnchor.ts +31 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/dynamicRef.ts +51 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/index.ts +9 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/recursiveAnchor.ts +14 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts +10 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/errors.ts +18 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/format/format.ts +120 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/format/index.ts +6 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/discriminator.ts +89 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/elements.ts +32 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/enum.ts +45 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/error.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/index.ts +37 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/metadata.ts +24 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/nullable.ts +21 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/optionalProperties.ts +15 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/properties.ts +177 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/ref.ts +76 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/type.ts +75 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/union.ts +12 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/jtd/values.ts +55 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/metadata.ts +17 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/next.ts +8 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/index.ts +7 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedItems.ts +47 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/unevaluated/unevaluatedProperties.ts +85 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/const.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/dependentRequired.ts +23 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/enum.ts +52 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/index.ts +49 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitContains.ts +16 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitItems.ts +26 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitLength.ts +30 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitNumber.ts +42 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/limitProperties.ts +26 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/multipleOf.ts +34 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/pattern.ts +28 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/required.ts +98 -0
- package/node_modules/light-my-request/node_modules/ajv/lib/vocabularies/validation/uniqueItems.ts +79 -0
- package/node_modules/light-my-request/node_modules/ajv/package.json +161 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.eslintrc.yml +27 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/FUNDING.yml +2 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/workflows/build.yml +28 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/.github/workflows/publish.yml +27 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/LICENSE +21 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/README.md +95 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/index.d.ts +40 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/index.js +93 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/package.json +73 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/.eslintrc.yml +6 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/fixtures/schema.js +125 -0
- package/node_modules/light-my-request/node_modules/json-schema-traverse/spec/index.spec.js +171 -0
- package/node_modules/light-my-request/package.json +26 -19
- package/node_modules/light-my-request/test/benchmark.js +67 -0
- package/node_modules/light-my-request/test/index.test-d.ts +6 -4
- package/node_modules/light-my-request/test/test.js +103 -14
- package/node_modules/lmdb-store/build/Makefile +1 -1
- package/node_modules/lodash/package.json +4 -1
- package/node_modules/lru-cache/package.json +1 -0
- package/node_modules/minipass/README.md +7 -7
- package/node_modules/minipass/index.js +18 -3
- package/node_modules/minipass/package.json +11 -11
- package/node_modules/msgpackr-extract/build/Makefile +1 -1
- package/node_modules/node-lmdb/build/Makefile +1 -1
- package/node_modules/{@pm2 → pm2/node_modules/@pm2}/pm2-version-check/README.md +0 -0
- package/node_modules/{@pm2 → pm2/node_modules/@pm2}/pm2-version-check/index.js +0 -0
- package/node_modules/{@pm2 → pm2/node_modules/@pm2}/pm2-version-check/package.json +1 -1
- package/node_modules/pm2/node_modules/debug/package.json +2 -1
- package/node_modules/{socketcluster-client/node_modules/clone → pm2-sysmonit/node_modules/systeminformation}/LICENSE +7 -5
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/README.md +1075 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/audio.js +219 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/battery.js +309 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/bluetooth.js +183 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/cli.js +31 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/cpu.js +1681 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/docker.js +764 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/dockerSocket.js +327 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/filesystem.js +1270 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/graphics.js +1062 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/index.d.ts +988 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/index.js +513 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/internet.js +240 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/memory.js +547 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/network.js +1713 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/osinfo.js +1161 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/printer.js +212 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/processes.js +1257 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/system.js +829 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/usb.js +305 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/users.js +441 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/util.js +1276 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/virtualbox.js +107 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/lib/wifi.js +747 -0
- package/node_modules/pm2-sysmonit/node_modules/systeminformation/package.json +135 -0
- package/node_modules/printj/package.json +1 -0
- package/node_modules/pumpify/node_modules/duplexify/.travis.yml +3 -0
- package/node_modules/pumpify/node_modules/duplexify/index.js +1 -1
- package/node_modules/pumpify/node_modules/duplexify/package.json +10 -10
- package/node_modules/pumpify/node_modules/duplexify/test.js +1 -0
- package/node_modules/request/node_modules/mime-db/HISTORY.md +0 -6
- package/node_modules/request/node_modules/mime-db/db.json +1 -39
- package/node_modules/request/node_modules/mime-db/package.json +13 -13
- package/node_modules/request/node_modules/mime-types/HISTORY.md +0 -7
- package/node_modules/request/node_modules/mime-types/package.json +13 -13
- package/node_modules/require-from-string/index.js +34 -0
- package/node_modules/require-from-string/license +21 -0
- package/node_modules/require-from-string/package.json +61 -0
- package/node_modules/require-from-string/readme.md +56 -0
- package/node_modules/sc-errors/package.json +2 -1
- package/node_modules/secure-json-parse/.github/workflows/ci.yml +16 -1
- package/node_modules/secure-json-parse/index.d.ts +60 -0
- package/node_modules/secure-json-parse/index.test-d.ts +30 -0
- package/node_modules/secure-json-parse/package.json +16 -13
- package/node_modules/send/HISTORY.md +10 -0
- package/node_modules/send/README.md +4 -6
- package/node_modules/send/index.js +7 -3
- package/node_modules/send/node_modules/http-errors/HISTORY.md +11 -0
- package/node_modules/send/node_modules/http-errors/README.md +12 -6
- package/node_modules/send/node_modules/http-errors/index.js +35 -2
- package/node_modules/send/node_modules/http-errors/package.json +24 -24
- package/node_modules/send/node_modules/ms/index.js +3 -3
- package/node_modules/send/node_modules/ms/license.md +1 -1
- package/node_modules/send/node_modules/ms/package.json +16 -15
- package/node_modules/send/node_modules/ms/readme.md +1 -2
- package/node_modules/send/node_modules/setprototypeof/README.md +1 -1
- package/node_modules/send/node_modules/setprototypeof/index.js +1 -1
- package/node_modules/send/node_modules/setprototypeof/package.json +14 -12
- package/node_modules/send/package.json +26 -26
- package/node_modules/socketcluster-client/bower.json +1 -1
- package/node_modules/socketcluster-client/index.js +1 -1
- package/node_modules/socketcluster-client/node_modules/buffer/AUTHORS.md +8 -0
- package/node_modules/socketcluster-client/node_modules/buffer/README.md +0 -6
- package/node_modules/socketcluster-client/node_modules/buffer/index.d.ts +1 -1
- package/node_modules/socketcluster-client/node_modules/buffer/index.js +49 -37
- package/node_modules/socketcluster-client/node_modules/buffer/package.json +36 -22
- package/node_modules/socketcluster-client/node_modules/ieee754/LICENSE +11 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/README.md +51 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/index.d.ts +10 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/index.js +85 -0
- package/node_modules/socketcluster-client/node_modules/ieee754/package.json +87 -0
- package/node_modules/socketcluster-client/node_modules/ws/LICENSE +21 -0
- package/node_modules/socketcluster-client/node_modules/ws/README.md +389 -0
- package/node_modules/socketcluster-client/node_modules/ws/index.js +9 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/.DS_Store +0 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/buffer-util.js +72 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/constants.js +10 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/event-target.js +170 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/extension.js +211 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/permessage-deflate.js +516 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/receiver.js +513 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/sender.js +401 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/validation.js +29 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/websocket-server.js +350 -0
- package/node_modules/socketcluster-client/node_modules/ws/lib/websocket.js +821 -0
- package/node_modules/socketcluster-client/node_modules/ws/package.json +81 -0
- package/node_modules/socketcluster-client/package.json +17 -18
- package/node_modules/socketcluster-client/socketcluster.js +12 -40
- package/node_modules/socketcluster-client/socketcluster.min.js +2 -2
- package/node_modules/string_decoder/package.json +0 -1
- package/node_modules/systeminformation/CHANGELOG.md +3 -22
- package/node_modules/systeminformation/README.md +1 -4
- package/node_modules/systeminformation/lib/battery.js +26 -104
- package/node_modules/systeminformation/lib/cpu.js +10 -13
- package/node_modules/systeminformation/lib/docker.js +3 -3
- package/node_modules/systeminformation/lib/filesystem.js +59 -86
- package/node_modules/systeminformation/lib/graphics.js +22 -91
- package/node_modules/systeminformation/lib/index.d.ts +11 -48
- package/node_modules/systeminformation/lib/memory.js +1 -1
- package/node_modules/systeminformation/lib/network.js +7 -17
- package/node_modules/systeminformation/lib/osinfo.js +7 -10
- package/node_modules/systeminformation/lib/processes.js +23 -35
- package/node_modules/systeminformation/lib/system.js +5 -5
- package/node_modules/systeminformation/lib/util.js +1 -41
- package/node_modules/systeminformation/package.json +11 -12
- package/node_modules/toidentifier/HISTORY.md +9 -0
- package/node_modules/toidentifier/README.md +3 -3
- package/node_modules/toidentifier/index.js +2 -0
- package/node_modules/toidentifier/package.json +25 -21
- package/node_modules/uri-js/package.json +2 -1
- package/node_modules/util-deprecate/package.json +0 -1
- package/node_modules/vizion/node_modules/async/CHANGELOG.md +275 -0
- package/node_modules/vizion/node_modules/async/LICENSE +19 -0
- package/node_modules/vizion/node_modules/async/README.md +56 -0
- package/node_modules/vizion/node_modules/async/all.js +50 -0
- package/node_modules/vizion/node_modules/async/allLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/allSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/any.js +52 -0
- package/node_modules/vizion/node_modules/async/anyLimit.js +43 -0
- package/node_modules/vizion/node_modules/async/anySeries.js +38 -0
- package/node_modules/vizion/node_modules/async/apply.js +68 -0
- package/node_modules/vizion/node_modules/async/applyEach.js +51 -0
- package/node_modules/vizion/node_modules/async/applyEachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/asyncify.js +110 -0
- package/node_modules/vizion/node_modules/async/auto.js +289 -0
- package/node_modules/vizion/node_modules/async/autoInject.js +170 -0
- package/node_modules/vizion/node_modules/async/bower.json +17 -0
- package/node_modules/vizion/node_modules/async/cargo.js +94 -0
- package/node_modules/vizion/node_modules/async/compose.js +58 -0
- package/node_modules/vizion/node_modules/async/concat.js +43 -0
- package/node_modules/vizion/node_modules/async/concatLimit.js +65 -0
- package/node_modules/vizion/node_modules/async/concatSeries.js +36 -0
- package/node_modules/vizion/node_modules/async/constant.js +66 -0
- package/node_modules/vizion/node_modules/async/detect.js +61 -0
- package/node_modules/vizion/node_modules/async/detectLimit.js +48 -0
- package/node_modules/vizion/node_modules/async/detectSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/dir.js +43 -0
- package/node_modules/vizion/node_modules/async/dist/async.js +5609 -0
- package/node_modules/vizion/node_modules/async/dist/async.min.js +2 -0
- package/node_modules/vizion/node_modules/async/dist/async.min.map +1 -0
- package/node_modules/vizion/node_modules/async/doDuring.js +66 -0
- package/node_modules/vizion/node_modules/async/doUntil.js +39 -0
- package/node_modules/vizion/node_modules/async/doWhilst.js +59 -0
- package/node_modules/vizion/node_modules/async/during.js +76 -0
- package/node_modules/vizion/node_modules/async/each.js +82 -0
- package/node_modules/vizion/node_modules/async/eachLimit.js +45 -0
- package/node_modules/vizion/node_modules/async/eachOf.js +111 -0
- package/node_modules/vizion/node_modules/async/eachOfLimit.js +41 -0
- package/node_modules/vizion/node_modules/async/eachOfSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/eachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/ensureAsync.js +73 -0
- package/node_modules/vizion/node_modules/async/every.js +50 -0
- package/node_modules/vizion/node_modules/async/everyLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/everySeries.js +37 -0
- package/node_modules/vizion/node_modules/async/filter.js +45 -0
- package/node_modules/vizion/node_modules/async/filterLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/filterSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/find.js +61 -0
- package/node_modules/vizion/node_modules/async/findLimit.js +48 -0
- package/node_modules/vizion/node_modules/async/findSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/foldl.js +78 -0
- package/node_modules/vizion/node_modules/async/foldr.js +44 -0
- package/node_modules/vizion/node_modules/async/forEach.js +82 -0
- package/node_modules/vizion/node_modules/async/forEachLimit.js +45 -0
- package/node_modules/vizion/node_modules/async/forEachOf.js +111 -0
- package/node_modules/vizion/node_modules/async/forEachOfLimit.js +41 -0
- package/node_modules/vizion/node_modules/async/forEachOfSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/forEachSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/forever.js +65 -0
- package/node_modules/vizion/node_modules/async/groupBy.js +54 -0
- package/node_modules/vizion/node_modules/async/groupByLimit.js +71 -0
- package/node_modules/vizion/node_modules/async/groupBySeries.js +37 -0
- package/node_modules/vizion/node_modules/async/index.js +582 -0
- package/node_modules/vizion/node_modules/async/inject.js +78 -0
- package/node_modules/vizion/node_modules/async/internal/DoublyLinkedList.js +88 -0
- package/node_modules/vizion/node_modules/async/internal/applyEach.js +38 -0
- package/node_modules/vizion/node_modules/async/internal/breakLoop.js +9 -0
- package/node_modules/vizion/node_modules/async/internal/consoleFunc.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/createTester.js +44 -0
- package/node_modules/vizion/node_modules/async/internal/doLimit.js +12 -0
- package/node_modules/vizion/node_modules/async/internal/doParallel.js +23 -0
- package/node_modules/vizion/node_modules/async/internal/doParallelLimit.js +23 -0
- package/node_modules/vizion/node_modules/async/internal/eachOfLimit.js +74 -0
- package/node_modules/vizion/node_modules/async/internal/filter.js +75 -0
- package/node_modules/vizion/node_modules/async/internal/findGetResult.js +10 -0
- package/node_modules/vizion/node_modules/async/internal/getIterator.js +13 -0
- package/node_modules/vizion/node_modules/async/internal/initialParams.js +21 -0
- package/node_modules/vizion/node_modules/async/internal/iterator.js +58 -0
- package/node_modules/vizion/node_modules/async/internal/map.js +35 -0
- package/node_modules/vizion/node_modules/async/internal/notId.js +10 -0
- package/node_modules/vizion/node_modules/async/internal/once.js +15 -0
- package/node_modules/vizion/node_modules/async/internal/onlyOnce.js +15 -0
- package/node_modules/vizion/node_modules/async/internal/parallel.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/queue.js +204 -0
- package/node_modules/vizion/node_modules/async/internal/reject.js +21 -0
- package/node_modules/vizion/node_modules/async/internal/setImmediate.js +42 -0
- package/node_modules/vizion/node_modules/async/internal/slice.js +16 -0
- package/node_modules/vizion/node_modules/async/internal/withoutIndex.js +12 -0
- package/node_modules/vizion/node_modules/async/internal/wrapAsync.js +25 -0
- package/node_modules/vizion/node_modules/async/log.js +41 -0
- package/node_modules/vizion/node_modules/async/map.js +54 -0
- package/node_modules/vizion/node_modules/async/mapLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/mapSeries.js +36 -0
- package/node_modules/vizion/node_modules/async/mapValues.js +63 -0
- package/node_modules/vizion/node_modules/async/mapValuesLimit.js +61 -0
- package/node_modules/vizion/node_modules/async/mapValuesSeries.js +37 -0
- package/node_modules/vizion/node_modules/async/memoize.js +101 -0
- package/node_modules/vizion/node_modules/async/nextTick.js +51 -0
- package/node_modules/vizion/node_modules/async/package.json +110 -0
- package/node_modules/vizion/node_modules/async/parallel.js +90 -0
- package/node_modules/vizion/node_modules/async/parallelLimit.js +40 -0
- package/node_modules/vizion/node_modules/async/priorityQueue.js +98 -0
- package/node_modules/vizion/node_modules/async/queue.js +130 -0
- package/node_modules/vizion/node_modules/async/race.js +70 -0
- package/node_modules/vizion/node_modules/async/reduce.js +78 -0
- package/node_modules/vizion/node_modules/async/reduceRight.js +44 -0
- package/node_modules/vizion/node_modules/async/reflect.js +81 -0
- package/node_modules/vizion/node_modules/async/reflectAll.js +105 -0
- package/node_modules/vizion/node_modules/async/reject.js +45 -0
- package/node_modules/vizion/node_modules/async/rejectLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/rejectSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/retry.js +156 -0
- package/node_modules/vizion/node_modules/async/retryable.js +65 -0
- package/node_modules/vizion/node_modules/async/select.js +45 -0
- package/node_modules/vizion/node_modules/async/selectLimit.js +37 -0
- package/node_modules/vizion/node_modules/async/selectSeries.js +35 -0
- package/node_modules/vizion/node_modules/async/seq.js +91 -0
- package/node_modules/vizion/node_modules/async/series.js +85 -0
- package/node_modules/vizion/node_modules/async/setImmediate.js +45 -0
- package/node_modules/vizion/node_modules/async/some.js +52 -0
- package/node_modules/vizion/node_modules/async/someLimit.js +43 -0
- package/node_modules/vizion/node_modules/async/someSeries.js +38 -0
- package/node_modules/vizion/node_modules/async/sortBy.js +91 -0
- package/node_modules/vizion/node_modules/async/timeout.js +89 -0
- package/node_modules/vizion/node_modules/async/times.js +50 -0
- package/node_modules/vizion/node_modules/async/timesLimit.js +42 -0
- package/node_modules/vizion/node_modules/async/timesSeries.js +32 -0
- package/node_modules/vizion/node_modules/async/transform.js +87 -0
- package/node_modules/vizion/node_modules/async/tryEach.js +81 -0
- package/node_modules/vizion/node_modules/async/unmemoize.js +25 -0
- package/node_modules/vizion/node_modules/async/until.js +41 -0
- package/node_modules/vizion/node_modules/async/waterfall.js +113 -0
- package/node_modules/vizion/node_modules/async/whilst.js +72 -0
- package/node_modules/vizion/node_modules/async/wrapSync.js +110 -0
- package/node_modules/vizion/package.json +3 -1
- package/node_modules/ws/package.json +0 -1
- package/package.json +62 -62
- package/security/JWTObjects.jsc +0 -0
- package/security/auth.jsc +0 -0
- package/security/cryptoHash.jsc +0 -0
- package/security/data_objects/PermissionAttributeResponseObject.jsc +0 -0
- package/security/data_objects/PermissionResponseObject.jsc +0 -0
- package/security/data_objects/PermissionTableResponseObject.jsc +0 -0
- package/security/permissionsTranslator.jsc +0 -0
- package/security/role.jsc +0 -0
- package/security/tokenAuthentication.jsc +0 -0
- package/security/user.jsc +0 -0
- package/server/ClusteringOriginObject.jsc +0 -0
- package/server/JobObject.jsc +0 -0
- package/server/clustering/ClusterStatusObject.jsc +0 -0
- package/server/clustering/NodeObject.jsc +0 -0
- package/server/clustering/clusterUtilities.jsc +0 -0
- package/server/configuration.jsc +0 -0
- package/server/customFunctions/customFunctionsServer.jsc +0 -0
- package/server/customFunctions/helpers/getCORSOptions.jsc +0 -0
- package/server/customFunctions/helpers/getHeaderTimeoutConfig.jsc +0 -0
- package/server/customFunctions/helpers/getServerOptions.jsc +0 -0
- package/server/customFunctions/operations.jsc +0 -0
- package/server/customFunctions/operationsValidation.jsc +0 -0
- package/server/customFunctions/plugins/hdbCore.js +11 -7
- package/server/harperdb/hdbServer.jsc +0 -0
- package/server/ipc/IPCClient.jsc +0 -0
- package/server/ipc/hdbIpcServer.jsc +0 -0
- package/server/ipc/serverHandlers.jsc +0 -0
- package/server/ipc/utility/IPCEventObject.jsc +0 -0
- package/server/ipc/utility/ipcUtils.jsc +0 -0
- package/server/jobRunner.jsc +0 -0
- package/server/jobThread.jsc +0 -0
- package/server/jobs.jsc +0 -0
- package/server/serverHelpers/OperationFunctionObject.jsc +0 -0
- package/server/serverHelpers/requestTimePlugin.jsc +0 -0
- package/server/serverHelpers/serverHandlers.jsc +0 -0
- package/server/serverHelpers/serverUtilities.jsc +0 -0
- package/server/socketcluster/Server.jsc +0 -0
- package/server/socketcluster/broker.jsc +0 -0
- package/server/socketcluster/connector/HDBSocketConnector.jsc +0 -0
- package/server/socketcluster/connector/InterNodeSocketConnector.jsc +0 -0
- package/server/socketcluster/connector/SocketConnector.jsc +0 -0
- package/server/socketcluster/connector/spawnSCConnection.jsc +0 -0
- package/server/socketcluster/decisionMatrix/CoreDecisionMatrix.jsc +0 -0
- package/server/socketcluster/decisionMatrix/DecisionMatrixIF.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/AssignToHdbChildWorkerRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CallRoomMsgHandlerRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CleanDataObjectRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/CommandCollection.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/DummyRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/RulesIF.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/StripHdbHeaderRule.jsc +0 -0
- package/server/socketcluster/decisionMatrix/rules/TestRule.jsc +0 -0
- package/server/socketcluster/handlers/NodeConnectionsHandler.jsc +0 -0
- package/server/socketcluster/handlers/SCServer.jsc +0 -0
- package/server/socketcluster/handlers/ServerSocket.jsc +0 -0
- package/server/socketcluster/interNodeConnectionLauncher.jsc +0 -0
- package/server/socketcluster/messageQueue/MessageQueueIF.jsc +0 -0
- package/server/socketcluster/middleware/AuthMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/ConnectionNameCheckMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/GenericMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/MessagePrepMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/MiddlewareFactory.jsc +0 -0
- package/server/socketcluster/middleware/MiddlewareIF.jsc +0 -0
- package/server/socketcluster/middleware/OriginatorCheckMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/RequestDataValidMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/StampOriginatorMiddleware.jsc +0 -0
- package/server/socketcluster/middleware/StampRequestMiddleware.jsc +0 -0
- package/server/socketcluster/observer/EventableIF.jsc +0 -0
- package/server/socketcluster/room/AddUserRoom.jsc +0 -0
- package/server/socketcluster/room/AlterUserRoom.jsc +0 -0
- package/server/socketcluster/room/CoreRoom.jsc +0 -0
- package/server/socketcluster/room/CreateAttributeRoom.jsc +0 -0
- package/server/socketcluster/room/CreateSchemaRoom.jsc +0 -0
- package/server/socketcluster/room/CreateTableRoom.jsc +0 -0
- package/server/socketcluster/room/DropUserRoom.jsc +0 -0
- package/server/socketcluster/room/HDBNodeRoom.jsc +0 -0
- package/server/socketcluster/room/RoomIF.jsc +0 -0
- package/server/socketcluster/room/RoomMessageObjects.jsc +0 -0
- package/server/socketcluster/room/UsersRoom.jsc +0 -0
- package/server/socketcluster/room/WatchHDBWorkersRoom.jsc +0 -0
- package/server/socketcluster/room/WorkerRoom.jsc +0 -0
- package/server/socketcluster/room/roomFactory.jsc +0 -0
- package/server/socketcluster/socketClusterObjects.jsc +0 -0
- package/server/socketcluster/types.jsc +0 -0
- package/server/socketcluster/util/clusterData.jsc +0 -0
- package/server/socketcluster/util/socketClusterUtils.jsc +0 -0
- package/server/socketcluster/worker/ClusterWorker.jsc +0 -0
- package/server/socketcluster/worker/WorkerIF.jsc +0 -0
- package/server/socketcluster/worker/WorkerObjects.jsc +0 -0
- package/server/transactToClusteringUtilities.jsc +0 -0
- package/sqlTranslator/SelectValidator.jsc +0 -0
- package/sqlTranslator/alasqlFunctionImporter.jsc +0 -0
- package/sqlTranslator/conditionPatterns.jsc +0 -0
- package/sqlTranslator/deleteTranslator.jsc +0 -0
- package/sqlTranslator/index.jsc +0 -0
- package/sqlTranslator/sql_statement_bucket.jsc +0 -0
- package/upgrade/EnvironmentVariable.jsc +0 -0
- package/upgrade/UpgradeDirective.jsc +0 -0
- package/upgrade/UpgradeObjects.jsc +0 -0
- package/upgrade/directives/3-0-0.jsc +0 -0
- package/upgrade/directives/3-1-0.jsc +0 -0
- package/upgrade/directives/directivesController.jsc +0 -0
- package/upgrade/directives/upgrade_scripts/3_0_0_reindex_script.jsc +0 -0
- package/upgrade/directivesManager.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/DBIDefinition.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/OpenDBIObject.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/OpenEnvironmentObject.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/commonErrors.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/commonUtility.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/environmentUtility.jsc +0 -0
- package/upgrade/lmdb/nodeLMDB/terms.jsc +0 -0
- package/upgrade/upgradePrompt.jsc +0 -0
- package/upgrade/upgradeUtilities.jsc +0 -0
- package/utility/AWS/AWSConnector.jsc +0 -0
- package/utility/OperationFunctionCaller.jsc +0 -0
- package/utility/common_utils.jsc +0 -0
- package/utility/environment/SystemInformationObject.jsc +0 -0
- package/utility/environment/SystemInformationOperation.jsc +0 -0
- package/utility/environment/environmentManager.jsc +0 -0
- package/utility/environment/systemInformation.jsc +0 -0
- package/utility/errors/commonErrors.jsc +0 -0
- package/utility/errors/hdbError.jsc +0 -0
- package/utility/functions/date/dateFunctions.jsc +0 -0
- package/utility/functions/geo.jsc +0 -0
- package/utility/functions/math/avg.jsc +0 -0
- package/utility/functions/math/count.jsc +0 -0
- package/utility/functions/sql/alaSQLExtension.jsc +0 -0
- package/utility/functions/string/compare.jsc +0 -0
- package/utility/globalSchema.jsc +0 -0
- package/utility/hdbTerms.jsc +0 -0
- package/utility/install/ascii_logo.txt +21 -36
- package/utility/install/checkJWTTokensExist.jsc +0 -0
- package/utility/install/installer.jsc +0 -0
- package/utility/install_user_permission.jsc +0 -0
- package/utility/lmdb/DBIDefinition.jsc +0 -0
- package/utility/lmdb/DeleteRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/InsertRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/OpenDBIObject.jsc +0 -0
- package/utility/lmdb/OpenEnvironmentObject.jsc +0 -0
- package/utility/lmdb/UpdateRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/UpsertRecordsResponseObject.jsc +0 -0
- package/utility/lmdb/cleanLMDBMap.jsc +0 -0
- package/utility/lmdb/commonUtility.jsc +0 -0
- package/utility/lmdb/deleteUtility.jsc +0 -0
- package/utility/lmdb/environmentUtility.jsc +0 -0
- package/utility/lmdb/searchCursorFunctions.jsc +0 -0
- package/utility/lmdb/searchUtility.jsc +0 -0
- package/utility/lmdb/terms.jsc +0 -0
- package/utility/lmdb/writeUtility.jsc +0 -0
- package/utility/logging/harper_logger.jsc +0 -0
- package/utility/mount_hdb.jsc +0 -0
- package/utility/operation_authorization.jsc +0 -0
- package/utility/password.jsc +0 -0
- package/utility/pm2/servicesConfig.jsc +0 -0
- package/utility/pm2/utilityFunctions.jsc +0 -0
- package/utility/psList.jsc +0 -0
- package/utility/registration/hdb_license.jsc +0 -0
- package/utility/registration/licenseObjects.jsc +0 -0
- package/utility/registration/registrationHandler.jsc +0 -0
- package/utility/scripts/restartHdb.jsc +0 -0
- package/utility/signalling.jsc +0 -0
- package/utility/system_info.jsc +0 -0
- package/validation/bulkDeleteValidator.jsc +0 -0
- package/validation/check_permissions.jsc +0 -0
- package/validation/clustering/configureValidator.jsc +0 -0
- package/validation/common_validators.jsc +0 -0
- package/validation/conditionalDeleteValidator.jsc +0 -0
- package/validation/deleteValidator.jsc +0 -0
- package/validation/fileLoadValidator.jsc +0 -0
- package/validation/insertValidator.jsc +0 -0
- package/validation/nodeSubscriptionValidator.jsc +0 -0
- package/validation/nodeValidator.jsc +0 -0
- package/validation/readLogValidator.jsc +0 -0
- package/validation/registration/license_key_object.jsc +0 -0
- package/validation/role_validation.jsc +0 -0
- package/validation/schemaMetadataValidator.jsc +0 -0
- package/validation/schema_validator.jsc +0 -0
- package/validation/searchValidator.jsc +0 -0
- package/validation/user_validation.jsc +0 -0
- package/validation/validationWrapper.jsc +0 -0
- package/data_layer/ExplodedObject.jsc +0 -0
- package/data_layer/WriteProcessorObject.jsc +0 -0
- package/data_layer/dataWriteProcessor.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/FileSystemBridge.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateAttribute.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateRecords.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateSchema.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsCreateTable.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDeleteRecords.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDeleteRecordsBefore.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDropAttribute.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDropSchema.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsDropTable.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsGetDataByHash.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsGetDataByValue.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsSearchByHash.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsSearchByValue.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsMethods/fsUpdateRecords.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/buildFolderPath.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/checkForNewAttr.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/deleteAttrStructure.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/getAllAttrHashValues.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/getAttributeFileValues.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/getBasePath.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/moveFolderToTrash.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/processData.jsc +0 -0
- package/data_layer/harperBridge/fsBridge/fsUtility/processRows.jsc +0 -0
- package/lib/fileSystem/fileSearch.jsc +0 -0
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/LICENSE +0 -19
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/README.md +0 -455
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/package.json +0 -104
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/browser.js +0 -269
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/common.js +0 -261
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/index.js +0 -10
- package/node_modules/@pm2/pm2-version-check/node_modules/debug/src/node.js +0 -263
- package/node_modules/@pm2/pm2-version-check/node_modules/ms/index.js +0 -162
- package/node_modules/@pm2/pm2-version-check/node_modules/ms/package.json +0 -72
- package/node_modules/@pm2/pm2-version-check/node_modules/ms/readme.md +0 -60
- package/node_modules/axios/lib/helpers/isAxiosError.js +0 -11
- package/node_modules/cfb/node_modules/adler-32/LICENSE +0 -201
- package/node_modules/cfb/node_modules/adler-32/README.md +0 -140
- package/node_modules/cfb/node_modules/adler-32/adler32.js +0 -92
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/LICENSE +0 -201
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/README.md +0 -1062
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/bin/printj.njs +0 -66
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/LICENSE +0 -201
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/printj.js +0 -597
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/printj.min.js +0 -2
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/dist/printj.min.map +0 -1
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/package.json +0 -101
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/printj.js +0 -597
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/printj.mjs +0 -574
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/types/index.d.ts +0 -11
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/types/tsconfig.json +0 -14
- package/node_modules/cfb/node_modules/adler-32/node_modules/printj/types/tslint.json +0 -13
- package/node_modules/cfb/node_modules/adler-32/package.json +0 -84
- package/node_modules/cfb/node_modules/adler-32/types/index.d.ts +0 -14
- package/node_modules/cfb/node_modules/adler-32/types/tsconfig.json +0 -15
- package/node_modules/cfb/node_modules/adler-32/types/tslint.json +0 -14
- package/node_modules/cfb/node_modules/printj/LICENSE +0 -201
- package/node_modules/cfb/node_modules/printj/README.md +0 -1095
- package/node_modules/cfb/node_modules/printj/bin/printj.njs +0 -66
- package/node_modules/cfb/node_modules/printj/dist/LICENSE +0 -201
- package/node_modules/cfb/node_modules/printj/dist/printj.js +0 -602
- package/node_modules/cfb/node_modules/printj/dist/printj.min.js +0 -2
- package/node_modules/cfb/node_modules/printj/dist/printj.min.map +0 -1
- package/node_modules/cfb/node_modules/printj/package.json +0 -105
- package/node_modules/cfb/node_modules/printj/printj.js +0 -602
- package/node_modules/cfb/node_modules/printj/printj.mjs +0 -579
- package/node_modules/cfb/node_modules/printj/shim.js +0 -276
- package/node_modules/cfb/node_modules/printj/types/index.d.ts +0 -11
- package/node_modules/cfb/node_modules/printj/types/tsconfig.json +0 -14
- package/node_modules/cfb/node_modules/printj/types/tslint.json +0 -13
- package/node_modules/fastify-helmet/.github/stale.yml +0 -21
- package/node_modules/fastify-static/.github/stale.yml +0 -21
- package/node_modules/fastify-static/example/public2/test.css +0 -4
- package/node_modules/fastify-static/example/public2/test.html +0 -8
- package/node_modules/fastify-static/example/server-multi-dir-list.js +0 -49
- package/node_modules/fastify-static/node_modules/glob/changelog.md +0 -67
- package/node_modules/fastify-static/test/static/.example +0 -1
- package/node_modules/fastify-static/test/static/a .md +0 -1
- package/node_modules/fastify-static/test/static2/bar.html +0 -3
- package/node_modules/fastify-static/test/static2/index.html +0 -3
- package/node_modules/light-my-request/node_modules/readable-stream/CONTRIBUTING.md +0 -38
- package/node_modules/light-my-request/node_modules/readable-stream/GOVERNANCE.md +0 -136
- package/node_modules/light-my-request/node_modules/readable-stream/LICENSE +0 -47
- package/node_modules/light-my-request/node_modules/readable-stream/README.md +0 -106
- package/node_modules/light-my-request/node_modules/readable-stream/errors-browser.js +0 -127
- package/node_modules/light-my-request/node_modules/readable-stream/errors.js +0 -116
- package/node_modules/light-my-request/node_modules/readable-stream/experimentalWarning.js +0 -17
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_duplex.js +0 -139
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_passthrough.js +0 -39
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_readable.js +0 -1124
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_transform.js +0 -201
- package/node_modules/light-my-request/node_modules/readable-stream/lib/_stream_writable.js +0 -697
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/async_iterator.js +0 -207
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/buffer_list.js +0 -210
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/destroy.js +0 -105
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +0 -104
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/from-browser.js +0 -3
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/from.js +0 -64
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/pipeline.js +0 -97
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/state.js +0 -27
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/stream-browser.js +0 -1
- package/node_modules/light-my-request/node_modules/readable-stream/lib/internal/streams/stream.js +0 -1
- package/node_modules/light-my-request/node_modules/readable-stream/package.json +0 -100
- package/node_modules/light-my-request/node_modules/readable-stream/readable-browser.js +0 -9
- package/node_modules/light-my-request/node_modules/readable-stream/readable.js +0 -16
- package/node_modules/socketcluster-client/node_modules/clone/.npmignore +0 -4
- package/node_modules/socketcluster-client/node_modules/clone/README.md +0 -178
- package/node_modules/socketcluster-client/node_modules/clone/clone.iml +0 -10
- package/node_modules/socketcluster-client/node_modules/clone/clone.js +0 -251
- package/node_modules/socketcluster-client/node_modules/clone/package.json +0 -161
- package/node_modules/socketcluster-client/node_modules/sc-errors/README.md +0 -2
- package/node_modules/socketcluster-client/node_modules/sc-errors/decycle.js +0 -79
- package/node_modules/socketcluster-client/node_modules/sc-errors/index.js +0 -340
- package/node_modules/socketcluster-client/node_modules/sc-errors/package.json +0 -55
- package/utility/fs/FileObject.jsc +0 -0
- package/utility/fs/fileExists.jsc +0 -0
- package/utility/fs/mkdirp.jsc +0 -0
- package/utility/fs/unlink.jsc +0 -0
- package/utility/fs/writeFile.jsc +0 -0
|
@@ -0,0 +1,1075 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<a href="https://systeminformation.io/">
|
|
3
|
+
<img src="https://systeminformation.io/assets/logo_inv.png" alt="systeminformation logo" width="102" height="72">
|
|
4
|
+
</a>
|
|
5
|
+
</p>
|
|
6
|
+
|
|
7
|
+
<h3 align="center">systeminformation</h3>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
System and OS information library for node.js
|
|
11
|
+
<br>
|
|
12
|
+
<a href="https://systeminformation.io/"><strong>Explore Systeminformation docs »</strong></a>
|
|
13
|
+
<br>
|
|
14
|
+
<br>
|
|
15
|
+
<a href="https://github.com/sebhildebrandt/systeminformation/issues/new?template=bug_report.md">Report bug</a>
|
|
16
|
+
·
|
|
17
|
+
<a href="https://github.com/sebhildebrandt/systeminformation/issues/new?template=feature_request.md&labels=feature">Request feature</a>
|
|
18
|
+
·
|
|
19
|
+
<a href="https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md">Changelog</a>
|
|
20
|
+
</p>
|
|
21
|
+
|
|
22
|
+
[![NPM Version][npm-image]][npm-url]
|
|
23
|
+
[![NPM Downloads][downloads-image]][downloads-url]
|
|
24
|
+
[![Git Issues][issues-img]][issues-url]
|
|
25
|
+
[![Closed Issues][closed-issues-img]][closed-issues-url]
|
|
26
|
+
<img src="docs/assets/no-dependencies.svg" alt="no dependencies">
|
|
27
|
+
[![Code Quality: Javascript][lgtm-badge]][lgtm-badge-url]
|
|
28
|
+
[![Total alerts][lgtm-alerts]][lgtm-alerts-url]
|
|
29
|
+
[![Caretaker][caretaker-image]][caretaker-url]
|
|
30
|
+
[![Sponsoring][sponsor-badge]][sponsor-url]
|
|
31
|
+
[![MIT license][license-img]][license-url]
|
|
32
|
+
|
|
33
|
+
This is amazing. Started as a small project just for myself, it now has > 15,000 lines of code, > 500 versions published, up to 4 mio downloads per month, > 60 mio downloads overall. #1 NPM ranking for backend packages. Thank you to all who contributed to this project!
|
|
34
|
+
|
|
35
|
+
## New Version 5.0
|
|
36
|
+
|
|
37
|
+
The new Version 5 is here - I spend several weeks finalizing this new version. Any support is highly appreciated - [Buy me a coffee](https://www.buymeacoffee.com/systeminfo)
|
|
38
|
+
|
|
39
|
+
This next major version release 5.0 comes with new functionality and several improvements and changes (some of them are breaking changes!):
|
|
40
|
+
|
|
41
|
+
- added audio: get detailed audio device information
|
|
42
|
+
- added bluetooth: get detailed bluetooth device information
|
|
43
|
+
- added dockerImages, dockerVolumes: get detailed information about docker images and volumes
|
|
44
|
+
- added printer: get information from detected printers
|
|
45
|
+
- added usb: get detailed usb controller and device information
|
|
46
|
+
- added wifi interfaces ans connections: extended wifi information
|
|
47
|
+
- better uuid function to get unique hardware and OS UUIDs
|
|
48
|
+
- better/extended cpu info detection
|
|
49
|
+
- better/extended system info detection
|
|
50
|
+
- Apple Silicon M1 support
|
|
51
|
+
- better Raspberry-PI detection
|
|
52
|
+
- systeminformation website updated and extendet with full documentation and examples [systeminformation.io][systeminformation-url]
|
|
53
|
+
- lot of minor improvements
|
|
54
|
+
|
|
55
|
+
Breaking Changes in version 5: you will see several breaking changes for the sake of a more consistent API interface and to be future proof. Read the [detailed version 5 changes][changes5-url].
|
|
56
|
+
|
|
57
|
+
I did a lot of testing on different platforms and machines but of course there might be some issues that I am not aware of. I would be happy if you inform me when you discover any issues. Issues can be [opened here][new-issue].
|
|
58
|
+
|
|
59
|
+
## Quick Start
|
|
60
|
+
|
|
61
|
+
Lightweight collection of 50+ functions to retrieve detailed hardware, system and OS information.
|
|
62
|
+
|
|
63
|
+
- simple to use
|
|
64
|
+
- get detailed information about system, cpu, baseboard, battery, memory, disks/filesystem, network, docker, software, services and processes
|
|
65
|
+
- supports Linux, macOS, partial Windows, FreeBSD, OpenBSD, NetBSD, SunOS and Android support
|
|
66
|
+
- no npm dependencies
|
|
67
|
+
|
|
68
|
+
**Attention**: this is a `node.js` library. It is supposed to be used as a backend/server-side library and will definitely not work within a browser.
|
|
69
|
+
|
|
70
|
+
### Installation
|
|
71
|
+
|
|
72
|
+
```bash
|
|
73
|
+
$ npm install systeminformation --save
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
#### Still need Version 4?
|
|
77
|
+
|
|
78
|
+
If you need version 4 (for compatibility reasons), you can install version 4 (latest release) like this
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
$ npm install systeminformation@4 —save
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
### Usage
|
|
86
|
+
|
|
87
|
+
All functions (except `version` and `time`) are implemented as asynchronous functions. Here a small example how to use them:
|
|
88
|
+
|
|
89
|
+
```js
|
|
90
|
+
const si = require('systeminformation');
|
|
91
|
+
|
|
92
|
+
// promises style - new since version 3
|
|
93
|
+
si.cpu()
|
|
94
|
+
.then(data => console.log(data))
|
|
95
|
+
.catch(error => console.error(error));
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## News and Changes
|
|
99
|
+
|
|
100
|
+
### Latest Activity
|
|
101
|
+
|
|
102
|
+
(last 7 major and minor version releases)
|
|
103
|
+
|
|
104
|
+
- Version 5.11.0: `networkInterfaces()` added default property and default parameter
|
|
105
|
+
- Version 5.10.0: basic `android` support
|
|
106
|
+
- Version 5.9.0: `graphics()` added properties (macOS)
|
|
107
|
+
- Version 5.8.0: `disksIO()` added waitTime, waitPercent (linux)
|
|
108
|
+
- Version 5.7.0: `diskLayout()` added S.M.A.R.T for Windows (if installed)
|
|
109
|
+
- Version 5.6.0: `cpuTemperature()` added added socket and chipset temp (linux)
|
|
110
|
+
- Version 5.5.0: `dockerVolumes()` added
|
|
111
|
+
- Version 5.4.0: `dockerImages()` added
|
|
112
|
+
- Version 5.3.0: `osInfo()` added remoteSession (win only)
|
|
113
|
+
- Version 5.2.0: `wifiInterfaces()` and `wifiConnections()` added
|
|
114
|
+
- Version 5.1.0: `memLayout()` added ECC flag, `bios()` added language, features (linux)
|
|
115
|
+
- Version 5.0.0: new version 5 - attention there are some breaking changes. See [detailed version 5 changes here][changes5-url].
|
|
116
|
+
- ...
|
|
117
|
+
|
|
118
|
+
You can find all changes here: [detailed changelog][changelog-url]
|
|
119
|
+
|
|
120
|
+
## Core concept
|
|
121
|
+
|
|
122
|
+
[Node.js][nodejs-url] comes with some basic OS information, but I always wanted a little more. So I came up to write this little library. This library is still work in progress. It is supposed to be used as a backend/server-side library (will definitely not work within a browser). It requires node.js version 4.0 and above.
|
|
123
|
+
|
|
124
|
+
I was able to test it on several Debian, Raspbian, Ubuntu distributions as well as macOS (Mavericks, Yosemite, El Captain, Sierra, High Sierra, Mojave, Catalina, Big Sur) and some Windows 7, Windows 8, Windows 10, FreeBSD, OpenBSD, NetBSD and SunOS machines. Not all functions are supported on all operating systems. Have a look at the function reference in the docs to get further details.
|
|
125
|
+
|
|
126
|
+
If you have comments, suggestions & reports, please feel free to contact me!
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
I also created a nice little command line tool called [mmon][mmon-github-url] (micro-monitor) for Linux and macOS, also available via [github][mmon-github-url] and [npm][mmon-npm-url]
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
## Reference
|
|
133
|
+
|
|
134
|
+
### Function Reference and OS Support
|
|
135
|
+
|
|
136
|
+
Full function reference with examples can be found at [https://systeminformation.io][systeminformation-url].
|
|
137
|
+
|
|
138
|
+
#### 1. General
|
|
139
|
+
|
|
140
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
141
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
142
|
+
| si.version() | : string | X | X | X | X | X | lib version (no callback/promise) |
|
|
143
|
+
| si.time() | {...} | X | X | X | X | X | (no callback/promise) |
|
|
144
|
+
| | current | X | X | X | X | X | local (server) time |
|
|
145
|
+
| | uptime | X | X | X | X | X | uptime in number of seconds |
|
|
146
|
+
| | timezone | X | X | X | X | X | e.g. GMT+0200 |
|
|
147
|
+
| | timezoneName | X | X | X | X | X | e.g. CEST |
|
|
148
|
+
|
|
149
|
+
#### 2. System (HW)
|
|
150
|
+
|
|
151
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
152
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
153
|
+
| si.system(cb) | {...} | X | X | X | X | | hardware information |
|
|
154
|
+
| | manufacturer | X | X | X | X | | e.g. 'MSI' |
|
|
155
|
+
| | model | X | X | X | X | | model/product e.g. 'MS-7823' |
|
|
156
|
+
| | version | X | X | X | X | | version e.g. '1.0' |
|
|
157
|
+
| | serial | X | X | X | X | | serial number |
|
|
158
|
+
| | uuid | X | X | X | X | | UUID |
|
|
159
|
+
| | sku | X | X | X | X | | SKU number |
|
|
160
|
+
| | virtual | X | X | | X | | is virtual machine |
|
|
161
|
+
| | virtualHost | X | X | | X | | virtual host (if virtual) |
|
|
162
|
+
| | raspberry | X | | | | | optional raspberry revision data |
|
|
163
|
+
| si.bios(cb) | {...} | X | X | X | X | | bios information |
|
|
164
|
+
| | vendor | X | X | X | X | | e.g. 'AMI' |
|
|
165
|
+
| | version | X | X | X | X | | version |
|
|
166
|
+
| | releaseDate | X | X | | X | | release date |
|
|
167
|
+
| | revision | X | X | | X | | revision |
|
|
168
|
+
| | serial | X | | | X | | serial |
|
|
169
|
+
| si.baseboard(cb) | {...} | X | X | X | X | | baseboard information |
|
|
170
|
+
| | manufacturer | X | X | X | X | | e.g. 'ASUS' |
|
|
171
|
+
| | model | X | X | X | X | | model / product name |
|
|
172
|
+
| | version | X | X | X | X | | version |
|
|
173
|
+
| | serial | X | X | X | X | | serial number |
|
|
174
|
+
| | assetTag | X | X | X | X | | asset tag |
|
|
175
|
+
| | memMax | X | | X | X | | max memory in bytes |
|
|
176
|
+
| | memSlots | X | | X | X | | memory slots on baseboard |
|
|
177
|
+
| si.chassis(cb) | {...} | X | X | X | X | | chassis information |
|
|
178
|
+
| | manufacturer | X | X | X | X | | e.g. 'MSI' |
|
|
179
|
+
| | model | X | X | X | X | | model / product name |
|
|
180
|
+
| | type | X | X | X | X | | model / product name |
|
|
181
|
+
| | version | X | X | X | X | | version |
|
|
182
|
+
| | serial | X | X | X | X | | serial number |
|
|
183
|
+
| | assetTag | X | X | X | X | | asset tag |
|
|
184
|
+
| | sku | | | | X | | SKU number |
|
|
185
|
+
|
|
186
|
+
#### 3. CPU
|
|
187
|
+
|
|
188
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
189
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
190
|
+
| si.cpu(cb) | {...} | X | X | X | X | | CPU information|
|
|
191
|
+
| | manufacturer | X | X | X | X | | e.g. 'Intel(R)' |
|
|
192
|
+
| | brand | X | X | X | X | | e.g. 'Core(TM)2 Duo' |
|
|
193
|
+
| | speed | X | X | X | X | | in GHz e.g. '3.40' |
|
|
194
|
+
| | speedMin | X | | X | X | | in GHz e.g. '0.80' |
|
|
195
|
+
| | speedMax | X | X | X | X | | in GHz e.g. '3.90' |
|
|
196
|
+
| | governor | X | | | | | e.g. 'powersave' |
|
|
197
|
+
| | cores | X | X | X | X | | # cores |
|
|
198
|
+
| | physicalCores | X | X | X | X | | # physical cores |
|
|
199
|
+
| | efficiencyCores | | | X | | | # efficiancy cores (ARM only) |
|
|
200
|
+
| | performanceCores | | | X | | | # performance cores (ARM only) |
|
|
201
|
+
| | processors | X | X | X | X | | # processors |
|
|
202
|
+
| | socket | X | X | | X | | socket type e.g. "LGA1356" |
|
|
203
|
+
| | vendor | X | X | X | X | | vendor ID |
|
|
204
|
+
| | family | X | X | X | X | | processor family |
|
|
205
|
+
| | model | X | X | X | X | | processor model |
|
|
206
|
+
| | stepping | X | X | X | X | | processor stepping |
|
|
207
|
+
| | revision | X | | X | X | | revision |
|
|
208
|
+
| | voltage | | X | | | | voltage |
|
|
209
|
+
| | flags | X | X | X | X | | CPU flags |
|
|
210
|
+
| | virtualization | X | X | X | X | | virtualization supported |
|
|
211
|
+
| | cache | X | X | X | X | | cache in bytes (object) |
|
|
212
|
+
| | cache.l1d | X | X | X | X | | L1D (data) size |
|
|
213
|
+
| | cache.l1i | X | X | X | X | | L1I (instruction) size |
|
|
214
|
+
| | cache.l2 | X | X | X | X | | L2 size |
|
|
215
|
+
| | cache.l3 | X | X | X | X | | L3 size |
|
|
216
|
+
| si.cpuFlags(cb) | : string | X | X | X | X | | CPU flags|
|
|
217
|
+
| si.cpuCache(cb) | {...} | X | X | X | X | | CPU cache sizes |
|
|
218
|
+
| | l1d | X | X | X | X | | L1D size |
|
|
219
|
+
| | l1i | X | X | X | X | | L1I size |
|
|
220
|
+
| | l2 | X | X | X | X | | L2 size |
|
|
221
|
+
| | l3 | X | X | X | X | | L3 size |
|
|
222
|
+
| si.cpuCurrentSpeed(cb) | {...} | X | X | X | X | X | current CPU speed (in GHz)|
|
|
223
|
+
| | avg | X | X | X | X | X | avg CPU speed (all cores) |
|
|
224
|
+
| | min | X | X | X | X | X | min CPU speed (all cores) |
|
|
225
|
+
| | max | X | X | X | X | X | max CPU speed (all cores) |
|
|
226
|
+
| | cores | X | X | X | X | X | CPU speed per core (array) |
|
|
227
|
+
| si.cpuTemperature(cb) | {...} | X | X | X* | X | | CPU temperature (if supported) |
|
|
228
|
+
| | main | X | X | X | X | | main temperature (avg) |
|
|
229
|
+
| | cores | X | X | X | X | | array of temperatures |
|
|
230
|
+
| | max | X | X | X | X | | max temperature |
|
|
231
|
+
| | socket | X | | | | | array socket temperatures |
|
|
232
|
+
| | chipset | X | | | | | chipset temperature |
|
|
233
|
+
|
|
234
|
+
#### 4. Memory
|
|
235
|
+
|
|
236
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
237
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
238
|
+
| si.mem(cb) | {...} | X | X | X | X | X | Memory information (in bytes)|
|
|
239
|
+
| | total | X | X | X | X | X | total memory in bytes |
|
|
240
|
+
| | free | X | X | X | X | X | not used in bytes |
|
|
241
|
+
| | used | X | X | X | X | X | used (incl. buffers/cache) |
|
|
242
|
+
| | active | X | X | X | X | X | used actively (excl. buffers/cache) |
|
|
243
|
+
| | buffcache | X | X | X | | X | used by buffers+cache |
|
|
244
|
+
| | buffers | X | | | | | used by buffers |
|
|
245
|
+
| | cached | X | | | | | used by cache |
|
|
246
|
+
| | slab | X | | | | | used by slab |
|
|
247
|
+
| | available | X | X | X | X | X | potentially available (total - active) |
|
|
248
|
+
| | swaptotal | X | X | X | X | X | |
|
|
249
|
+
| | swapused | X | X | X | X | X | |
|
|
250
|
+
| | swapfree | X | X | X | X | X | |
|
|
251
|
+
| si.memLayout(cb) | [{...}] | X | X | X | X | | Memory Layout (array) |
|
|
252
|
+
| | [0].size | X | X | X | X | | size in bytes |
|
|
253
|
+
| | [0].bank | X | X | | X | | memory bank |
|
|
254
|
+
| | [0].type | X | X | X | X | | memory type |
|
|
255
|
+
| | [0].clockSpeed | X | X | X | X | | clock speed |
|
|
256
|
+
| | [0].formFactor | X | X | | X | | form factor |
|
|
257
|
+
| | [0].manufacturer | X | X | X | X | | manufacturer |
|
|
258
|
+
| | [0].partNum | X | X | X | X | | part number |
|
|
259
|
+
| | [0].serialNum | X | X | X | X | | serial number |
|
|
260
|
+
| | [0].voltageConfigured | X | X | | X | | voltage conf. |
|
|
261
|
+
| | [0].voltageMin | X | X | | X | | voltage min |
|
|
262
|
+
| | [0].voltageMax | X | X | | X | | voltage max |
|
|
263
|
+
|
|
264
|
+
#### 5. Battery
|
|
265
|
+
|
|
266
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
267
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
268
|
+
| si.battery(cb) | {...} | X | X | X | X | | battery information |
|
|
269
|
+
| | hasBattery | X | X | X | X | | indicates presence of battery |
|
|
270
|
+
| | cycleCount | X | | X | | | numbers of recharges |
|
|
271
|
+
| | isCharging | X | X | X | X | | indicates if battery is charging |
|
|
272
|
+
| | designedCapacity | X | | X | X | | max capacity of battery (mWh) |
|
|
273
|
+
| | maxCapacity | X | | X | X | | max capacity of battery (mWh) |
|
|
274
|
+
| | currentCapacity | X | | X | X | | current capacity of battery (mWh) |
|
|
275
|
+
| | capacityUnit | X | | X | X | | capacity unit (mWh) |
|
|
276
|
+
| | voltage | X | | X | X | | current voltage of battery (V) |
|
|
277
|
+
| | percent | X | X | X | X | | charging level in percent |
|
|
278
|
+
| | timeRemaining | X | | X | | | minutes left (if discharging) |
|
|
279
|
+
| | acConnected | X | X | X | X | | AC connected |
|
|
280
|
+
| | type | X | | X | | | battery type |
|
|
281
|
+
| | model | X | | X | | | model |
|
|
282
|
+
| | manufacturer | X | | X | | | manufacturer |
|
|
283
|
+
| | serial | X | | X | | | battery serial |
|
|
284
|
+
|
|
285
|
+
* See known issues if you have problem with macOS temperature or windows temperature
|
|
286
|
+
|
|
287
|
+
#### 6. Graphics
|
|
288
|
+
|
|
289
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
290
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
291
|
+
| si.graphics(cb) | {...} | X | | X | X | | arrays of graphics controllers and displays |
|
|
292
|
+
| | controllers[]| X | | X | X | | graphics controllers array |
|
|
293
|
+
| | ...[0].vendor | X | | X | X | | e.g. ATI |
|
|
294
|
+
| | ...[0].vendorId | | | X | | | vendor ID |
|
|
295
|
+
| | ...[0].model | X | | X | X | | graphics controller model |
|
|
296
|
+
| | ...[0].deviceId | | | X | | | device ID |
|
|
297
|
+
| | ...[0].bus | X | | X | X | | on which bus (e.g. PCIe) |
|
|
298
|
+
| | ...[0].vram | X | | X | X | | VRAM size (in MB) |
|
|
299
|
+
| | ...[0].vramDynamic | X | | X | X | | true if dynamicly allocated ram |
|
|
300
|
+
| | ...[0].external | | | X | | | is external GPU |
|
|
301
|
+
| | ...[0].cores | | | X | | | Apple silicon only |
|
|
302
|
+
| | ...[0].metalVersion | | | X | | | Apple Metal Version |
|
|
303
|
+
| | displays[] | X | | X | X | | monitor/display array |
|
|
304
|
+
| | ...[0].vendor | | | | X | | monitor/display vendor |
|
|
305
|
+
| | ...[0].vendorId | | | X | | | vendor ID |
|
|
306
|
+
| | ...[0].deviceName | | | | X | | e.g. \\\\.\\DISPLAY1 |
|
|
307
|
+
| | ...[0].model | X | | X | X | | monitor/display model |
|
|
308
|
+
| | ...[0].productionYear | | | X | | | production year |
|
|
309
|
+
| | ...[0].serial | | | X | | | serial number |
|
|
310
|
+
| | ...[0].displayId | | | X | | | display ID |
|
|
311
|
+
| | ...[0].main | X | | X | X| | true if main monitor |
|
|
312
|
+
| | ...[0].builtin | X | | X | | | true if built in monitor |
|
|
313
|
+
| | ...[0].connection | X | | X | X | | e.g. DisplayPort or HDMI |
|
|
314
|
+
| | ...[0].sizeX | X | | | X | | size in mm horizontal |
|
|
315
|
+
| | ...[0].sizeY | X | | | X | | size in mm vertical |
|
|
316
|
+
| | ...[0].pixelDepth | X | | X | X | | color depth in bits |
|
|
317
|
+
| | ...[0].resolutionX | X | | X | X | | pixel horizontal |
|
|
318
|
+
| | ...[0].resolutionY | X | | X | X | | pixel vertical |
|
|
319
|
+
| | ...[0].currentResX | X | | X | X | | current pixel horizontal |
|
|
320
|
+
| | ...[0].currentResY | X | | X | X | | current pixel vertical |
|
|
321
|
+
| | ...[0].positionX | | | | X | | display position X |
|
|
322
|
+
| | ...[0].positionY | | | | X | | display position Y |
|
|
323
|
+
| | ...[0].currentRefreshRate | X | | X | X | | current screen refresh rate |
|
|
324
|
+
|
|
325
|
+
#### 7. Operating System
|
|
326
|
+
|
|
327
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
328
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
329
|
+
| si.osInfo(cb) | {...} | X | X | X | X | X | OS information |
|
|
330
|
+
| | platform | X | X | X | X | X | 'linux', 'darwin', 'win32', ... |
|
|
331
|
+
| | distro | X | X | X | X | X | |
|
|
332
|
+
| | release | X | X | X | X | X | |
|
|
333
|
+
| | codename | | | X | | | |
|
|
334
|
+
| | kernel | X | X | X | X | X | kernel release - same as os.release() |
|
|
335
|
+
| | arch | X | X | X | X | X | same as os.arch() |
|
|
336
|
+
| | hostname | X | X | X | X | X | same as os.hostname() |
|
|
337
|
+
| | fqdn | X | X | X | X | X | FQDN fully qualified domain name |
|
|
338
|
+
| | codepage | X | X | X | X | | OS build version |
|
|
339
|
+
| | logofile | X | X | X | X | X | e.g. 'apple', 'debian', 'fedora', ... |
|
|
340
|
+
| | serial | X | X | X | X | | OS/Host serial number |
|
|
341
|
+
| | build | X | | X | X | | OS build version |
|
|
342
|
+
| | servicepack | | | | X | | service pack version |
|
|
343
|
+
| | uefi | X | X | X | X | | OS started via UEFI |
|
|
344
|
+
| | hypervisor | | | | X | | hyper-v enabled? (win only) |
|
|
345
|
+
| | remoteSession | | | | X | | runs in remote session (win only) |
|
|
346
|
+
| si.uuid(cb) | {...} | X | X | X | X | X | object of several UUIDs |
|
|
347
|
+
| | os | X | X | X | X | | os specific UUID |
|
|
348
|
+
| | hardware | X | X | X | X | | hardware specific UUID |
|
|
349
|
+
| | macs | X | X | X | X | | MAC addresses |
|
|
350
|
+
| si.versions(apps, cb) | {...} | X | X | X | X | X | version information (kernel, ssl, node, ...)<br />apps param is optional for detecting<br />only specific apps/libs<br />(string, comma separated) |
|
|
351
|
+
| si.shell(cb) | : string | X | X | X | X | | standard shell |
|
|
352
|
+
| si.users(cb) | [{...}] | X | X | X | X | X | array of users online |
|
|
353
|
+
| | [0].user | X | X | X | X | X | user name |
|
|
354
|
+
| | [0].tty | X | X | X | X | X | terminal |
|
|
355
|
+
| | [0].date | X | X | X | X | X | login date |
|
|
356
|
+
| | [0].time | X | X | X | X | X | login time |
|
|
357
|
+
| | [0].ip | X | X | X | | X | ip address (remote login) |
|
|
358
|
+
| | [0].command | X | X | X | | X | last command or shell |
|
|
359
|
+
|
|
360
|
+
#### 8. Current Load, Processes & Services
|
|
361
|
+
|
|
362
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
363
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
364
|
+
| si.currentLoad(cb) | {...} | X | | X | X | X | CPU-Load |
|
|
365
|
+
| | avgLoad | X | | X | | X | average load |
|
|
366
|
+
| | currentLoad | X | | X | X | X | CPU load in % |
|
|
367
|
+
| | currentLoadUser | X | | X | X | X | CPU load user in % |
|
|
368
|
+
| | currentLoadSystem | X | | X | X | X | CPU load system in % |
|
|
369
|
+
| | currentLoadNice | X | | X | X | X | CPU load nice in % |
|
|
370
|
+
| | currentLoadIdle | X | | X | X | X | CPU load idle in % |
|
|
371
|
+
| | currentLoadIrq | X | | X | X | X | CPU load system in % |
|
|
372
|
+
| | rawCurrentLoad... | X | | X | X | X | CPU load raw values (ticks) |
|
|
373
|
+
| | cpus[] | X | | X | X | X | current loads per CPU in % + raw ticks |
|
|
374
|
+
| si.fullLoad(cb) | : integer | X | | X | X | | CPU full load since bootup in % |
|
|
375
|
+
| si.processes(cb) | {...} | X | X | X | X | X | # running processes |
|
|
376
|
+
| | all | X | X | X | X | X | # of all processes |
|
|
377
|
+
| | running | X | X | X | | X | # of all processes running |
|
|
378
|
+
| | blocked | X | X | X | | X | # of all processes blocked |
|
|
379
|
+
| | sleeping | X | X | X | | X | # of all processes sleeping |
|
|
380
|
+
| | unknown | | | | X | | # of all processes unknown status |
|
|
381
|
+
| | list[] | X | X | X | X | X | list of all processes incl. details |
|
|
382
|
+
| | ...[0].pid | X | X | X | X | X | process PID |
|
|
383
|
+
| | ...[0].parentPid | X | X | X | X | X | parent process PID |
|
|
384
|
+
| | ...[0].name | X | X | X | X | X | process name |
|
|
385
|
+
| | ...[0].cpu | X | X | X | X | X | process % CPU usage |
|
|
386
|
+
| | ...[0].cpuu | X | X | | X | | process % CPU usage (user) |
|
|
387
|
+
| | ...[0].cpus | X | X | | X | | process % CPU usage (system) |
|
|
388
|
+
| | ...[0].mem | X | X | X | X | X | process memory % |
|
|
389
|
+
| | ...[0].priority | X | X | X | X | X | process priotity |
|
|
390
|
+
| | ...[0].memVsz | X | X | X | X | X | process virtual memory size |
|
|
391
|
+
| | ...[0].memRss | X | X | X | X | X | process mem resident set size |
|
|
392
|
+
| | ...[0].nice | X | X | X | | X | process nice value |
|
|
393
|
+
| | ...[0].started | X | X | X | X | X | process start time |
|
|
394
|
+
| | ...[0].state | X | X | X | X | X | process state (e.g. sleeping) |
|
|
395
|
+
| | ...[0].tty | X | X | X | | X | tty from which process was started |
|
|
396
|
+
| | ...[0].user | X | X | X | | X | user who started process |
|
|
397
|
+
| | ...[0].command | X | X | X | X | X | process starting command |
|
|
398
|
+
| | ...[0].params | X | X | X | | X | process params |
|
|
399
|
+
| | ...[0].path | X | X | X | X | X | process path |
|
|
400
|
+
| | proc | X | X | X | X | | process name |
|
|
401
|
+
| | pid | X | X | X | X | | PID |
|
|
402
|
+
| | pids | X | X | X | X | | additional pids |
|
|
403
|
+
| | cpu | X | X | X | X | | process % CPU |
|
|
404
|
+
| | mem | X | X | X | X | | process % MEM |
|
|
405
|
+
| si.services('mysql, apache2', cb) | [{...}] | X | X | X | X | | pass comma separated string of services<br>pass "*" for ALL services (linux/win only) |
|
|
406
|
+
| | [0].name | X | X | X | X | | name of service |
|
|
407
|
+
| | [0].running | X | X | X | X | | true / false |
|
|
408
|
+
| | [0].startmode | | | | X | | manual, automatic, ... |
|
|
409
|
+
| | [0].pids | X | X | X | X | | pids |
|
|
410
|
+
| | [0].cpu | X | X | X | | | process % CPU |
|
|
411
|
+
| | [0].mem | X | X | X | | | process % MEM |
|
|
412
|
+
| si.processLoad('mysql, apache2', cb) | [{...}] | X | X | X | X | | pass comma separated string of processes<br>pass "*" for ALL processes (linux/win only) |
|
|
413
|
+
| | [0].proc | X | X | X | X | | name of process |
|
|
414
|
+
| | [0].pids | X | X | X | X | | pids |
|
|
415
|
+
| | [0].cpu | X | X | X | | | process % CPU |
|
|
416
|
+
| | [0].mem | X | X | X | | | process % MEM |
|
|
417
|
+
|
|
418
|
+
#### 9. File System
|
|
419
|
+
|
|
420
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
421
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
422
|
+
| si.diskLayout(cb) | [{...}] | X | | X | X | | physical disk layout (array) |
|
|
423
|
+
| | [0].device | X | | X | | | e.g. /dev/sda |
|
|
424
|
+
| | [0].type | X | | X | X | | HD, SSD, NVMe |
|
|
425
|
+
| | [0].name | X | | X | X | | disk name |
|
|
426
|
+
| | [0].vendor | X | | | X | | vendor/producer |
|
|
427
|
+
| | [0].size | X | | X | X | | size in bytes |
|
|
428
|
+
| | [0].bytesPerSector | | | | X | | bytes per sector |
|
|
429
|
+
| | [0].totalCylinders | | | | X | | total cylinders |
|
|
430
|
+
| | [0].totalHeads | | | | X | | total heads |
|
|
431
|
+
| | [0].totalSectors | | | | X | | total sectors |
|
|
432
|
+
| | [0].totalTracks | | | | X | | total tracks |
|
|
433
|
+
| | [0].tracksPerCylinder | | | | X | | tracks per cylinder |
|
|
434
|
+
| | [0].sectorsPerTrack | | | | X | | sectors per track |
|
|
435
|
+
| | [0].firmwareRevision | X | | X | X | | firmware revision |
|
|
436
|
+
| | [0].serialNum | X | | X | X | | serial number |
|
|
437
|
+
| | [0].interfaceType | X | | | X | | SATA, PCIe, ... |
|
|
438
|
+
| | [0].smartStatus | X | | X | X | | S.M.A.R.T Status (see Known Issues) |
|
|
439
|
+
| | [0].temperature | X | | | | | S.M.A.R.T temperature |
|
|
440
|
+
| | [0].smartData | X | | | X | | full S.M.A.R.T data from smartctl<br>requires at least smartmontools 7.0 |
|
|
441
|
+
| si.blockDevices(cb) | [{...}] | X | | X | X | | returns array of disks, partitions,<br>raids and roms |
|
|
442
|
+
| | [0].name | X | | X | X | | name |
|
|
443
|
+
| | [0].type | X | | X | X | | type |
|
|
444
|
+
| | [0].fstype | X | | X | X | | file system type (e.g. ext4) |
|
|
445
|
+
| | [0].mount | X | | X | X | | mount point |
|
|
446
|
+
| | [0].size | X | | X | X | | size in bytes |
|
|
447
|
+
| | [0].physical | X | | X | X | | physical type (HDD, SSD, CD/DVD) |
|
|
448
|
+
| | [0].uuid | X | | X | X | | UUID |
|
|
449
|
+
| | [0].label | X | | X | X | | label |
|
|
450
|
+
| | [0].model | X | | X | | | model |
|
|
451
|
+
| | [0].serial | X | | | X | | serial |
|
|
452
|
+
| | [0].removable | X | | X | X | | serial |
|
|
453
|
+
| | [0].protocol | X | | X | | | protocol (SATA, PCI-Express, ...) |
|
|
454
|
+
| si.disksIO(cb) | {...} | X | | X | | | current transfer stats |
|
|
455
|
+
| | rIO | X | | X | | | read IOs on all mounted drives |
|
|
456
|
+
| | wIO | X | | X | | | write IOs on all mounted drives |
|
|
457
|
+
| | tIO | X | | X | | | write IOs on all mounted drives |
|
|
458
|
+
| | rIO_sec | X | | X | | | read IO per sec (* see notes) |
|
|
459
|
+
| | wIO_sec | X | | X | | | write IO per sec (* see notes) |
|
|
460
|
+
| | tIO_sec | X | | X | | | total IO per sec (* see notes) |
|
|
461
|
+
| | rWaitTime | X | | | | | read IO request time (* see notes) |
|
|
462
|
+
| | wWaitTime | X | | | | | write IO request time (* see notes) |
|
|
463
|
+
| | tWaitTime | X | | | | | total IO request time (* see notes) |
|
|
464
|
+
| | rWaitPercent | X | | | | | read IO request time percent (* see notes) |
|
|
465
|
+
| | wWaitPercent | X | | | | | write IO request time percent (* see notes) |
|
|
466
|
+
| | tWaitPercent | X | | | | | total IO request time percent (* see notes) |
|
|
467
|
+
| | ms | X | | X | | | interval length (for per second values) |
|
|
468
|
+
| si.fsSize(cb) | [{...}] | X | X | X | X | | returns array of mounted file systems |
|
|
469
|
+
| | [0].fs | X | X | X | X | | name of file system |
|
|
470
|
+
| | [0].type | X | X | X | X | | type of file system |
|
|
471
|
+
| | [0].size | X | X | X | X | | sizes in bytes |
|
|
472
|
+
| | [0].used | X | X | X | X | | used in bytes |
|
|
473
|
+
| | [0].available | X | X | X | X | | used in bytes |
|
|
474
|
+
| | [0].use | X | X | X | X | | used in % |
|
|
475
|
+
| | [0].mount | X | X | X | X | | mount point |
|
|
476
|
+
| si.fsOpenFiles(cb) | {...} | X | X | X | | | count max/allocated file descriptors |
|
|
477
|
+
| | max | X | X | X | | | max file descriptors |
|
|
478
|
+
| | allocated | X | X | X | | | current open files count |
|
|
479
|
+
| | available | X | X | X | | | count available |
|
|
480
|
+
| si.fsStats(cb) | {...} | X | | X | | | current transfer stats |
|
|
481
|
+
| | rx | X | | X | | | bytes read since startup |
|
|
482
|
+
| | wx | X | | X | | | bytes written since startup |
|
|
483
|
+
| | tx | X | | X | | | total bytes read + written since startup |
|
|
484
|
+
| | rx_sec | X | | X | | | bytes read / second (* see notes) |
|
|
485
|
+
| | wx_sec | X | | X | | | bytes written / second (* see notes) |
|
|
486
|
+
| | tx_sec | X | | X | | | total bytes reads + written / second |
|
|
487
|
+
| | ms | X | | X | | | interval length (for per second values) |
|
|
488
|
+
|
|
489
|
+
#### 10. USB
|
|
490
|
+
|
|
491
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
492
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
493
|
+
| si.usb(cb) | [{...}] | X | X | X | X | | get detected USB devices |
|
|
494
|
+
| | [0].bus | X | | | | | USB bus |
|
|
495
|
+
| | [0].deviceId | X | | | | | bus device id |
|
|
496
|
+
| | [0].id | X | | X | X | | internal id |
|
|
497
|
+
| | [0].name | X | | X | X | | name |
|
|
498
|
+
| | [0].type | X | | X | X | | name |
|
|
499
|
+
| | [0].removable | | | X | | | is removable |
|
|
500
|
+
| | [0].vendor | X | | X | | | vendor |
|
|
501
|
+
| | [0].manufacturer | X | | X | X | | manifacturer |
|
|
502
|
+
| | [0].maxPower | X | | | | | max power |
|
|
503
|
+
| | [0].default | X | | X | X | | is default printer |
|
|
504
|
+
| | [0].serialNumber | | | X | | | serial number |
|
|
505
|
+
|
|
506
|
+
#### 11. Printer
|
|
507
|
+
|
|
508
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
509
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
510
|
+
| si.printer(cb) | [{...}] | X | X | X | X | | get printer information |
|
|
511
|
+
| | [0].id | X | | X | X | | internal id |
|
|
512
|
+
| | [0].name | X | | X | X | | name |
|
|
513
|
+
| | [0].model | X | | X | X | | model |
|
|
514
|
+
| | [0].uri | X | | X | | | printer URI |
|
|
515
|
+
| | [0].uuid | X | | | | | printer UUID |
|
|
516
|
+
| | [0].status | X | | X | X | | printer status (e.g. idle) |
|
|
517
|
+
| | [0].local | X | | X | X | | is local printer |
|
|
518
|
+
| | [0].default | | | X | X | | is default printer |
|
|
519
|
+
| | [0].shared | X | | X | X | | is shared printer |
|
|
520
|
+
|
|
521
|
+
#### 12. Audio
|
|
522
|
+
|
|
523
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
524
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
525
|
+
| si.audio(cb) | [{...}] | X | X | X | X | | get printer information |
|
|
526
|
+
| | [0].id | X | | X | X | | internal id |
|
|
527
|
+
| | [0].name | X | | X | X | | name |
|
|
528
|
+
| | [0].manufacturer | X | | X | X | | manufacturer |
|
|
529
|
+
| | [0].revision | X | | | | | revision |
|
|
530
|
+
| | [0].driver | X | | | | | driver |
|
|
531
|
+
| | [0].default | | | X | X | | is default |
|
|
532
|
+
| | [0].channel | X | | X | | | channel e.g. USB, HDMI, ... |
|
|
533
|
+
| | [0].type | X | | X | X | | type e.g. Speaker |
|
|
534
|
+
| | [0].in | | | X | X | | is input channel |
|
|
535
|
+
| | [0].out | | | X | X | | is output channel |
|
|
536
|
+
| | [0].interfaceType | X | | X | X | | interface type (PCIe, USB, HDMI, ...) |
|
|
537
|
+
| | [0].status | X | | X | X | | printer status (e.g. idle) |
|
|
538
|
+
|
|
539
|
+
#### 13. Network related functions
|
|
540
|
+
|
|
541
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
542
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
543
|
+
| si.networkInterfaces(cb) | [{...}] | X | X | X | X | X | array of network interfaces<br>With the 'default' parameter it returns<br>only the default interface |
|
|
544
|
+
| | [0].iface | X | X | X | X | X | interface |
|
|
545
|
+
| | [0].ifaceName | X | X | X | X | X | interface name (differs on Windows) |
|
|
546
|
+
| | [0].default | X | X | X | X | X | true if this is the default interface |
|
|
547
|
+
| | [0].ip4 | X | X | X | X | X | ip4 address |
|
|
548
|
+
| | [0].ip4subnet | X | X | X | X | X | ip4 subnet mask |
|
|
549
|
+
| | [0].ip6 | X | X | X | X | X | ip6 address |
|
|
550
|
+
| | [0].ip6subnet | X | X | X | X | X | ip6 subnet mask |
|
|
551
|
+
| | [0].mac | X | X | X | X | X | MAC address |
|
|
552
|
+
| | [0].internal | X | X | X | X | X | true if internal interface |
|
|
553
|
+
| | [0].virtual | X | X | X | X | X | true if virtual interface |
|
|
554
|
+
| | [0].operstate | X | | X | X | | up / down |
|
|
555
|
+
| | [0].type | X | | X | X | | wireless / wired |
|
|
556
|
+
| | [0].duplex | X | | X | | | duplex |
|
|
557
|
+
| | [0].mtu | X | | X | | | maximum transmission unit |
|
|
558
|
+
| | [0].speed | X | | X | X | | speed in MBit / s |
|
|
559
|
+
| | [0].dhcp | X | | X | X | | IP address obtained by DHCP |
|
|
560
|
+
| | [0].dnsSuffix | X | | | X | | DNS suffix |
|
|
561
|
+
| | [0].ieee8021xAuth | X | | | X | | IEEE 802.1x auth |
|
|
562
|
+
| | [0].ieee8021xState | X | | | X | | IEEE 802.1x state |
|
|
563
|
+
| | [0].carrierChanges | X | | | | | # changes up/down |
|
|
564
|
+
| si.networkInterfaceDefault(cb) | : string | X | X | X | X | X | get name of default network interface |
|
|
565
|
+
| si.networkGatewayDefault(cb) | : string | X | X | X | X | X | get default network gateway |
|
|
566
|
+
| si.networkStats(ifaces,cb) | [{...}] | X | X | X | X | | current network stats of given interfaces<br>iface list: space or comma separated<br>iface parameter is optional<br>defaults to first external network interface,<br />Pass '*' for all interfaces |
|
|
567
|
+
| | [0].iface | X | X | X | X | | interface |
|
|
568
|
+
| | [0].operstate | X | X | X | X | | up / down |
|
|
569
|
+
| | [0].rx_bytes | X | X | X | X | | received bytes overall |
|
|
570
|
+
| | [0].rx_dropped | X | X | X | X | | received dropped overall |
|
|
571
|
+
| | [0].rx_errors | X | X | X | X | | received errors overall |
|
|
572
|
+
| | [0].tx_bytes | X | X | X | X | | transferred bytes overall |
|
|
573
|
+
| | [0].tx_dropped | X | X | X | X | | transferred dropped overall |
|
|
574
|
+
| | [0].tx_errors | X | X | X | X | | transferred errors overall |
|
|
575
|
+
| | [0].rx_sec | X | X | X | X | | received bytes / second (* see notes) |
|
|
576
|
+
| | [0].tx_sec | X | X | X | X | | transferred bytes per second (* see notes) |
|
|
577
|
+
| | [0].ms | X | X | X | X | | interval length (for per second values) |
|
|
578
|
+
| si.networkConnections(cb) | [{...}] | X | X | X | X | | current network network connections<br>returns an array of all connections|
|
|
579
|
+
| | [0].protocol | X | X | X | X | | tcp or udp |
|
|
580
|
+
| | [0].localAddress | X | X | X | X | | local address |
|
|
581
|
+
| | [0].localPort | X | X | X | X | | local port |
|
|
582
|
+
| | [0].peerAddress | X | X | X | X | | peer address |
|
|
583
|
+
| | [0].peerPort | X | X | X | X | | peer port |
|
|
584
|
+
| | [0].state | X | X | X | X | | like ESTABLISHED, TIME_WAIT, ... |
|
|
585
|
+
| | [0].pid | X | X | X | X | | process ID |
|
|
586
|
+
| | [0].process | X | X | | | | process name |
|
|
587
|
+
| si.inetChecksite(url, cb) | {...} | X | X | X | X | X | response-time (ms) to fetch given URL |
|
|
588
|
+
| | url | X | X | X | X | X | given url |
|
|
589
|
+
| | ok | X | X | X | X | X | status code OK (2xx, 3xx) |
|
|
590
|
+
| | status | X | X | X | X | X | status code |
|
|
591
|
+
| | ms | X | X | X | X | X | response time in ms |
|
|
592
|
+
| si.inetLatency(host, cb) | : number | X | X | X | X | X | response-time (ms) to external resource<br>host parameter is optional (default 8.8.8.8)|
|
|
593
|
+
|
|
594
|
+
#### 14. Wifi
|
|
595
|
+
|
|
596
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
597
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
598
|
+
| si.wifiNetworks(cb) | [{...}] | X | | X | X | | array of available wifi networks |
|
|
599
|
+
| | [0].ssid | X | | X | X | | Wifi network SSID |
|
|
600
|
+
| | [0].bssid | X | | X | X | | BSSID (mac) |
|
|
601
|
+
| | [0].mode | X | | | | | mode |
|
|
602
|
+
| | [0].channel | X | | X | X | | channel |
|
|
603
|
+
| | [0].frequency | X | | X | X | | frequengy in MHz |
|
|
604
|
+
| | [0].signalLevel | X | | X | X | | signal level in dB |
|
|
605
|
+
| | [0].quality | X | | X | X | | quaility in % |
|
|
606
|
+
| | [0].security | X | | X | X | | array e.g. WPA, WPA-2 |
|
|
607
|
+
| | [0].wpaFlags | X | | X | X | | array of WPA flags |
|
|
608
|
+
| | [0].rsnFlags | X | | | | | array of RDN flags |
|
|
609
|
+
| si.wifiInterfaces(cb) | [{...}] | X | | X | X | | array of detected wifi interfaces |
|
|
610
|
+
| | [0].id | X | | X | X | | ID |
|
|
611
|
+
| | [0].iface | X | | X | X | | interface |
|
|
612
|
+
| | [0].model | X | | X | X | | model |
|
|
613
|
+
| | [0].vendor | X | | X | X | | vendor |
|
|
614
|
+
| | [0].mac | X | | X | X | | MAC address |
|
|
615
|
+
| si.wifiConnections(cb) | [{...}] | X | | X | X | | array of active wifi connections |
|
|
616
|
+
| | [0].id | X | | X | X | | ID |
|
|
617
|
+
| | [0].iface | X | | X | X | | interface |
|
|
618
|
+
| | [0].name | X | | X | X | | name |
|
|
619
|
+
| | [0].mode | X | | X | X | | model |
|
|
620
|
+
| | [0].bssid | X | | X | X | | BSSID (mac) |
|
|
621
|
+
| | [0].mode | X | | | | | mode |
|
|
622
|
+
| | [0].channel | X | | X | X | | channel |
|
|
623
|
+
| | [0].frequency | X | | X | X | | frequengy in MHz |
|
|
624
|
+
| | [0].signalLevel | X | | X | X | | signal level in dB |
|
|
625
|
+
| | [0].quality | X | | X | X | | quaility in % |
|
|
626
|
+
| | [0].security | X | | X | X | | array e.g. WPA, WPA-2 |
|
|
627
|
+
| | [0].txRate | X | | X | X | | transfer rate MBit/s |
|
|
628
|
+
|
|
629
|
+
#### 15. Bluetooth
|
|
630
|
+
|
|
631
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
632
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
633
|
+
| si.bluetoothDevices(cb) | [{...}] | X | | X | X | | ... |
|
|
634
|
+
| | [0].device | | | X | | | device name |
|
|
635
|
+
| | [0].name | X | | X | X | | name |
|
|
636
|
+
| | [0].macDevice | X | | X | | | MAC address device |
|
|
637
|
+
| | [0].macHost | X | | X | | | MAC address host |
|
|
638
|
+
| | [0].batteryPercent | | | X | | | battery level percent |
|
|
639
|
+
| | [0].manufacturer | | | X | X | | manufacturer |
|
|
640
|
+
| | [0].type | X | | X | X | | typoe of bluetooth device |
|
|
641
|
+
| | [0].connected | X | | X | | | is connected |
|
|
642
|
+
|
|
643
|
+
#### 16. Docker
|
|
644
|
+
|
|
645
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
646
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
647
|
+
| si.dockerInfo(cb) | {...} | X | X | X | X | X | returns general docker info |
|
|
648
|
+
| | id | X | X | X | X | X | Docker ID |
|
|
649
|
+
| | containers | X | X | X | X | X | number of containers |
|
|
650
|
+
| | containersRunning | X | X | X | X | X | number of running containers |
|
|
651
|
+
| | containersPaused | X | X | X | X | X | number of paused containers |
|
|
652
|
+
| | containersStopped | X | X | X | X | X | number of stopped containers |
|
|
653
|
+
| | images | X | X | X | X | X | number of images |
|
|
654
|
+
| | driver | X | X | X | X | X | driver (e.g. 'devicemapper', 'overlay2') |
|
|
655
|
+
| | memoryLimit | X | X | X | X | X | has memory limit |
|
|
656
|
+
| | swapLimit | X | X | X | X | X | has swap limit |
|
|
657
|
+
| | kernelMemory | X | X | X | X | X | has kernal memory |
|
|
658
|
+
| | cpuCfsPeriod | X | X | X | X | X | has CpuCfsPeriod |
|
|
659
|
+
| | cpuCfsQuota | X | X | X | X | X | has CpuCfsQuota |
|
|
660
|
+
| | cpuShares | X | X | X | X | X | has CPUShares |
|
|
661
|
+
| | cpuSet | X | X | X | X | X | has CPUShares |
|
|
662
|
+
| | ipv4Forwarding | X | X | X | X | X | has IPv4Forwarding |
|
|
663
|
+
| | bridgeNfIptables | X | X | X | X | X | has BridgeNfIptables |
|
|
664
|
+
| | bridgeNfIp6tables | X | X | X | X | X | has BridgeNfIp6tables |
|
|
665
|
+
| | debug | X | X | X | X | X | Debug on |
|
|
666
|
+
| | nfd | X | X | X | X | X | named data networking forwarding daemon |
|
|
667
|
+
| | oomKillDisable | X | X | X | X | X | out-of-memory kill disabled |
|
|
668
|
+
| | ngoroutines | X | X | X | X | X | number NGoroutines |
|
|
669
|
+
| | systemTime | X | X | X | X | X | docker SystemTime |
|
|
670
|
+
| | loggingDriver | X | X | X | X | X | logging driver e.g. 'json-file' |
|
|
671
|
+
| | cgroupDriver | X | X | X | X | X | cgroup driver e.g. 'cgroupfs' |
|
|
672
|
+
| | nEventsListener | X | X | X | X | X | number NEventsListeners |
|
|
673
|
+
| | kernelVersion | X | X | X | X | X | docker kernel version |
|
|
674
|
+
| | operatingSystem | X | X | X | X | X | docker OS e.g. 'Docker for Mac' |
|
|
675
|
+
| | osType | X | X | X | X | X | OSType e.g. 'linux' |
|
|
676
|
+
| | architecture | X | X | X | X | X | architecture e.g. x86_64 |
|
|
677
|
+
| | ncpu | X | X | X | X | X | number of CPUs |
|
|
678
|
+
| | memTotal | X | X | X | X | X | memory total |
|
|
679
|
+
| | dockerRootDir | X | X | X | X | X | docker root directory |
|
|
680
|
+
| | httpProxy | X | X | X | X | X | http proxy |
|
|
681
|
+
| | httpsProxy | X | X | X | X | X | https proxy |
|
|
682
|
+
| | noProxy | X | X | X | X | X | NoProxy |
|
|
683
|
+
| | name | X | X | X | X | X | Name |
|
|
684
|
+
| | labels | X | X | X | X | X | array of labels |
|
|
685
|
+
| | experimentalBuild | X | X | X | X | X | is experimental build |
|
|
686
|
+
| | serverVersion | X | X | X | X | X | server version |
|
|
687
|
+
| | clusterStore | X | X | X | X | X | cluster store |
|
|
688
|
+
| | clusterAdvertise | X | X | X | X | X | cluster advertise |
|
|
689
|
+
| | defaultRuntime | X | X | X | X | X | default runtime e.g. 'runc' |
|
|
690
|
+
| | liveRestoreEnabled | X | X | X | X | X | live store enabled |
|
|
691
|
+
| | isolation | X | X | X | X | X | isolation |
|
|
692
|
+
| | initBinary | X | X | X | X | X | init binary |
|
|
693
|
+
| | productLicense | X | X | X | X | X | product license |
|
|
694
|
+
| si.dockerImages(all, cb) | [{...}] | X | X | X | X | X | returns array of top level/all docker images |
|
|
695
|
+
| | [0].id | X | X | X | X | X | image ID |
|
|
696
|
+
| | [0].container | X | X | X | X | X | container ID |
|
|
697
|
+
| | [0].comment | X | X | X | X | X | comment |
|
|
698
|
+
| | [0].os | X | X | X | X | X | OS |
|
|
699
|
+
| | [0].architecture | X | X | X | X | X | architecture |
|
|
700
|
+
| | [0].parent | X | X | X | X | X | parent ID |
|
|
701
|
+
| | [0].dockerVersion | X | X | X | X | X | docker version |
|
|
702
|
+
| | [0].size | X | X | X | X | X | image size |
|
|
703
|
+
| | [0].sharedSize | X | X | X | X | X | shared size |
|
|
704
|
+
| | [0].virtualSize | X | X | X | X | X | virtual size |
|
|
705
|
+
| | [0].author | X | X | X | X | X | author |
|
|
706
|
+
| | [0].created | X | X | X | X | X | created date / time |
|
|
707
|
+
| | [0].containerConfig | X | X | X | X | X | container config object |
|
|
708
|
+
| | [0].graphDriver | X | X | X | X | X | graph driver object |
|
|
709
|
+
| | [0].repoDigests | X | X | X | X | X | repo digests array |
|
|
710
|
+
| | [0].repoTags | X | X | X | X | X | repo tags array |
|
|
711
|
+
| | [0].config | X | X | X | X | X | config object |
|
|
712
|
+
| | [0].rootFS | X | X | X | X | X | root fs object |
|
|
713
|
+
| si.dockerContainers(all, cb) | [{...}] | X | X | X | X | X | returns array of active/all docker containers |
|
|
714
|
+
| | [0].id | X | X | X | X | X | ID of container |
|
|
715
|
+
| | [0].name | X | X | X | X | X | name of container |
|
|
716
|
+
| | [0].image | X | X | X | X | X | name of image |
|
|
717
|
+
| | [0].imageID | X | X | X | X | X | ID of image |
|
|
718
|
+
| | [0].command | X | X | X | X | X | command |
|
|
719
|
+
| | [0].created | X | X | X | X | X | creation time (unix) |
|
|
720
|
+
| | [0].started | X | X | X | X | X | creation time (unix) |
|
|
721
|
+
| | [0].finished | X | X | X | X | X | creation time (unix) |
|
|
722
|
+
| | [0].createdAt | X | X | X | X | X | creation date time string |
|
|
723
|
+
| | [0].startedAt | X | X | X | X | X | creation date time string |
|
|
724
|
+
| | [0].finishedAt | X | X | X | X | X | creation date time string |
|
|
725
|
+
| | [0].state | X | X | X | X | X | created, running, exited |
|
|
726
|
+
| | [0].ports | X | X | X | X | X | array of ports |
|
|
727
|
+
| | [0].mounts | X | X | X | X | X | array of mounts |
|
|
728
|
+
| si.dockerContainerStats(ids, cb) | [{...}] | X | X | X | X | X | statistics for specific containers<br>container IDs: space or comma separated,<br>pass '*' for all containers|
|
|
729
|
+
| | [0].id | X | X | X | X | X | Container ID |
|
|
730
|
+
| | [0].memUsage | X | X | X | X | X | memory usage in bytes |
|
|
731
|
+
| | [0].memLimit | X | X | X | X | X | memory limit (max mem) in bytes |
|
|
732
|
+
| | [0].memPercent | X | X | X | X | X | memory usage in percent |
|
|
733
|
+
| | [0].cpuPercent | X | X | X | X | X | cpu usage in percent |
|
|
734
|
+
| | [0].pids | X | X | X | X | X | number of processes |
|
|
735
|
+
| | [0].netIO.rx | X | X | X | X | X | received bytes via network |
|
|
736
|
+
| | [0].netIO.wx | X | X | X | X | X | sent bytes via network |
|
|
737
|
+
| | [0].blockIO.r | X | X | X | X | X | bytes read from BlockIO |
|
|
738
|
+
| | [0].blockIO.w | X | X | X | X | X | bytes written to BlockIO |
|
|
739
|
+
| | [0].cpuStats | X | X | X | X | X | detailed cpu stats |
|
|
740
|
+
| | [0].percpuStats | X | X | X | X | X | detailed per cpu stats |
|
|
741
|
+
| | [0].memoryStats | X | X | X | X | X | detailed memory stats |
|
|
742
|
+
| | [0].networks | X | X | X | X | X | detailed network stats per interface |
|
|
743
|
+
| si.dockerContainerProcesses(id, cb) | [{...}] | X | X | X | X | X | array of processes inside a container |
|
|
744
|
+
| | [0].pidHost | X | X | X | X | X | process ID (host) |
|
|
745
|
+
| | [0].ppid | X | X | X | X | X | parent process ID |
|
|
746
|
+
| | [0].pgid | X | X | X | X | X | process group ID |
|
|
747
|
+
| | [0].user | X | X | X | X | X | effective user name |
|
|
748
|
+
| | [0].ruser | X | X | X | X | X | real user name |
|
|
749
|
+
| | [0].group | X | X | X | X | X | effective group name |
|
|
750
|
+
| | [0].rgroup | X | X | X | X | X | real group name |
|
|
751
|
+
| | [0].stat | X | X | X | X | X | process state |
|
|
752
|
+
| | [0].time | X | X | X | X | X | accumulated CPU time |
|
|
753
|
+
| | [0].elapsed | X | X | X | X | X | elapsed running time |
|
|
754
|
+
| | [0].nice | X | X | X | X | X | nice value |
|
|
755
|
+
| | [0].rss | X | X | X | X | X | resident set size |
|
|
756
|
+
| | [0].vsz | X | X | X | X | X | virtual size in Kbytes |
|
|
757
|
+
| | [0].command | X | X | X | X | X | command and arguments |
|
|
758
|
+
| si.dockerVolumes(cb) | [{...}] | returns array of all docker volumes |
|
|
759
|
+
| | [0].name | X | X | X | X | X | volume name |
|
|
760
|
+
| | [0].driver | X | X | X | X | X | driver |
|
|
761
|
+
| | [0].labels | X | X | X | X | X | labels object |
|
|
762
|
+
| | [0].mountpoint | X | X | X | X | X | mountpoint |
|
|
763
|
+
| | [0].options | X | X | X | X | X | options |
|
|
764
|
+
| | [0].scope | X | X | X | X | X | scope |
|
|
765
|
+
| | [0].created | X | X | X | X | X | created at |
|
|
766
|
+
| si.dockerAll(cb) | {...} | X | X | X | X | X | list of all containers including their stats<br>and processes in one single array |
|
|
767
|
+
|
|
768
|
+
#### 17. Virtual Box
|
|
769
|
+
|
|
770
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
771
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
772
|
+
| si.vboxInfo(cb) | [{...}] | X | X | X | X | X | returns array general virtual box info |
|
|
773
|
+
| | [0].id | X | X | X | X | X | virtual box ID |
|
|
774
|
+
| | [0].name | X | X | X | X | X | name |
|
|
775
|
+
| | [0].running | X | X | X | X | X | vbox is running |
|
|
776
|
+
| | [0].started | X | X | X | X | X | started date time |
|
|
777
|
+
| | [0].runningSince | X | X | X | X | X | running since (secs) |
|
|
778
|
+
| | [0].stopped | X | X | X | X | X | stopped date time |
|
|
779
|
+
| | [0].stoppedSince | X | X | X | X | X | stopped since (secs) |
|
|
780
|
+
| | [0].guestOS | X | X | X | X | X | Guest OS |
|
|
781
|
+
| | [0].hardwareUUID | X | X | X | X | X | Hardware UUID |
|
|
782
|
+
| | [0].memory | X | X | X | X | X | Memory in MB |
|
|
783
|
+
| | [0].vram | X | X | X | X | X | VRAM in MB |
|
|
784
|
+
| | [0].cpus | X | X | X | X | X | CPUs |
|
|
785
|
+
| | [0].cpuExepCap | X | X | X | X | X | CPU exec cap |
|
|
786
|
+
| | [0].cpuProfile | X | X | X | X | X | CPU profile |
|
|
787
|
+
| | [0].chipset | X | X | X | X | X | chipset |
|
|
788
|
+
| | [0].firmware | X | X | X | X | X | firmware |
|
|
789
|
+
| | [0].pageFusion | X | X | X | X | X | page fusion |
|
|
790
|
+
| | [0].configFile | X | X | X | X | X | config file |
|
|
791
|
+
| | [0].snapshotFolder | X | X | X | X | X | snapshot folder |
|
|
792
|
+
| | [0].logFolder | X | X | X | X | X | log folder path |
|
|
793
|
+
| | [0].hpet | X | X | X | X | X | HPET |
|
|
794
|
+
| | [0].pae | X | X | X | X | X | PAE |
|
|
795
|
+
| | [0].longMode | X | X | X | X | X | long mode |
|
|
796
|
+
| | [0].tripleFaultReset | X | X | X | X | X | triple fault reset |
|
|
797
|
+
| | [0].apic | X | X | X | X | X | APIC |
|
|
798
|
+
| | [0].x2Apic | X | X | X | X | X | X2APIC |
|
|
799
|
+
| | [0].acpi | X | X | X | X | X | ACPI |
|
|
800
|
+
| | [0].ioApic | X | X | X | X | X | IOAPIC |
|
|
801
|
+
| | [0].biosApicMode | X | X | X | X | X | BIOS APIC mode |
|
|
802
|
+
| | [0].bootMenuMode | X | X | X | X | X | boot menu Mode |
|
|
803
|
+
| | [0].bootDevice1 | X | X | X | X | X | bootDevice1 |
|
|
804
|
+
| | [0].bootDevice2 | X | X | X | X | X | bootDevice2 |
|
|
805
|
+
| | [0].bootDevice3 | X | X | X | X | X | bootDevice3 |
|
|
806
|
+
| | [0].bootDevice4 | X | X | X | X | X | bootDevice4 |
|
|
807
|
+
| | [0].timeOffset | X | X | X | X | X | time Offset |
|
|
808
|
+
| | [0].rtc | X | X | X | X | X | RTC |
|
|
809
|
+
|
|
810
|
+
#### 16. "Get All / Observe" - functions
|
|
811
|
+
|
|
812
|
+
| Function | Result object | Linux | BSD | Mac | Win | Sun | Comments |
|
|
813
|
+
| --------------- | ------------- | ----- | ------- | --- | --- | --- | -------- |
|
|
814
|
+
| si.getStaticData(cb) | {...} | X | X | X | X | X | all static data at once |
|
|
815
|
+
| si.getDynamicData(srv,iface,cb) | {...} | X | X | X | X | X | all dynamic data at once<br>Specify services and interfaces to monitor<br>Defaults to first external network interface<br>Pass "*" for ALL services (linux/win only)<br>Pass "*" for ALL network interfaces |
|
|
816
|
+
| si.getAllData(srv,iface,cb) | {...} | X | X | X | X | X | all data at once<br>Specify services and interfaces to monitor<br>Defaults to first external network interface<br>Pass "*" for ALL services (linux/win only)<br>Pass "*" for ALL network interfaces |
|
|
817
|
+
| si.get(valueObject,cb) | {...} | X | X | X | X | X | get partial system info data at once<br>In valueObject you can define<br>all values, you want to get back <br>(see documentation for details) |
|
|
818
|
+
| si.observe(valueObject,interval,cb) | - | X | X | X | X | X | Observe a defined value object<br>call callback on changes<br>polling interval in milliseconds |
|
|
819
|
+
|
|
820
|
+
### cb: Asynchronous Function Calls (callback)
|
|
821
|
+
|
|
822
|
+
Remember: all functions (except `version` and `time`) are implemented as asynchronous functions! There are now three ways to consume them:
|
|
823
|
+
|
|
824
|
+
**Callback Style**
|
|
825
|
+
|
|
826
|
+
```js
|
|
827
|
+
const si = require('systeminformation');
|
|
828
|
+
|
|
829
|
+
si.cpu(function(data) {
|
|
830
|
+
console.log('CPU Information:');
|
|
831
|
+
console.log('- manufucturer: ' + data.manufacturer);
|
|
832
|
+
console.log('- brand: ' + data.brand);
|
|
833
|
+
console.log('- speed: ' + data.speed);
|
|
834
|
+
console.log('- cores: ' + data.cores);
|
|
835
|
+
console.log('- physical cores: ' + data.physicalCores);
|
|
836
|
+
console.log('...');
|
|
837
|
+
})
|
|
838
|
+
```
|
|
839
|
+
|
|
840
|
+
### Promises
|
|
841
|
+
|
|
842
|
+
**Promises Style** is new in version 3.0.
|
|
843
|
+
|
|
844
|
+
When omitting callback parameter (cb), then you can use all function in a promise oriented way. All functions (except of `version` and `time`) are returning a promise, that you can consume:
|
|
845
|
+
|
|
846
|
+
```js
|
|
847
|
+
const si = require('systeminformation');
|
|
848
|
+
|
|
849
|
+
si.cpu()
|
|
850
|
+
.then(data => {
|
|
851
|
+
console.log('CPU Information:');
|
|
852
|
+
console.log('- manufucturer: ' + data.manufacturer);
|
|
853
|
+
console.log('- brand: ' + data.brand);
|
|
854
|
+
console.log('- speed: ' + data.speed);
|
|
855
|
+
console.log('- cores: ' + data.cores);
|
|
856
|
+
console.log('- physical cores: ' + data.physicalCores);
|
|
857
|
+
console.log('...');
|
|
858
|
+
})
|
|
859
|
+
.catch(error => console.error(error));
|
|
860
|
+
```
|
|
861
|
+
|
|
862
|
+
### Async / Await
|
|
863
|
+
|
|
864
|
+
**Using async / await** (available since node v7.6)
|
|
865
|
+
|
|
866
|
+
Since node v7.6 you can also use the `async` / `await` pattern. The above example would then look like this:
|
|
867
|
+
|
|
868
|
+
```js
|
|
869
|
+
const si = require('systeminformation');
|
|
870
|
+
|
|
871
|
+
async function cpuData() {
|
|
872
|
+
try {
|
|
873
|
+
const data = await si.cpu();
|
|
874
|
+
console.log('CPU Information:');
|
|
875
|
+
console.log('- manufucturer: ' + data.manufacturer);
|
|
876
|
+
console.log('- brand: ' + data.brand);
|
|
877
|
+
console.log('- speed: ' + data.speed);
|
|
878
|
+
console.log('- cores: ' + data.cores);
|
|
879
|
+
console.log('- physical cores: ' + data.physicalCores);
|
|
880
|
+
console.log('...');
|
|
881
|
+
} catch (e) {
|
|
882
|
+
console.log(e)
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
```
|
|
886
|
+
|
|
887
|
+
## Known Issues
|
|
888
|
+
|
|
889
|
+
#### macOS - Temperature Sensor
|
|
890
|
+
|
|
891
|
+
To be able to measure temperature on macOS I created a little additional package. Due to some difficulties
|
|
892
|
+
in NPM with `optionalDependencies` I unfortunately was getting unexpected warnings on other platforms.
|
|
893
|
+
So I decided to drop this optional dependency for macOS - so by default, you will not get correct values.
|
|
894
|
+
|
|
895
|
+
This additional package will unfortunately NOT work on Apple Silicon M1 machines.
|
|
896
|
+
|
|
897
|
+
But if you need to detect macOS temperature just run the following additional
|
|
898
|
+
installation command:
|
|
899
|
+
|
|
900
|
+
```bash
|
|
901
|
+
$ npm install osx-temperature-sensor --save
|
|
902
|
+
```
|
|
903
|
+
|
|
904
|
+
`systeminformation` will then detect this additional library and return the temperature when calling systeminformations standard function `cpuTemperature()`
|
|
905
|
+
|
|
906
|
+
#### Windows Temperature, Battery, ...
|
|
907
|
+
|
|
908
|
+
`wmic` - which is used to determine temperature and battery sometimes needs to be run with admin
|
|
909
|
+
privileges. So if you do not get any values, try to run it again with according
|
|
910
|
+
privileges. If you still do not get any values, your system might not support this feature.
|
|
911
|
+
In some cases we also discovered that `wmic` returned incorrect temperature values.
|
|
912
|
+
|
|
913
|
+
#### Linux Temperature
|
|
914
|
+
|
|
915
|
+
In some cases you need to install the Linux `sensors` package to be able to measure temperature
|
|
916
|
+
e.g. on DEBIAN based systems by running `sudo apt-get install lm-sensors`
|
|
917
|
+
|
|
918
|
+
#### Linux S.M.A.R.T. Status
|
|
919
|
+
|
|
920
|
+
To be able to detect S.M.A.R.T. status on Linux you need to install `smartmontools`. On DEBIAN based Linux distributions you can install it by running `sudo apt-get install smartmontools`
|
|
921
|
+
|
|
922
|
+
#### Windows Encoding Issues
|
|
923
|
+
I now reimplemented all windows functions to avoid encoding problems (special chacarters). And as Windows 11 now droppend `wmic` support, I had to move completely to `powershell`. Be sure that powershell version 5+ is installed on your machine. On older Windows versions (7, 8) you might still see encoding problems due to the old powershell version.
|
|
924
|
+
## *: Additional Notes
|
|
925
|
+
|
|
926
|
+
In `fsStats()`, `disksIO()` and `networkStats()` the results / sec. values (rx_sec, IOPS, ...) are calculated correctly beginning
|
|
927
|
+
with the second call of the function. It is determined by calculating the difference of transferred bytes / IOs
|
|
928
|
+
divided by the time between two calls of the function.
|
|
929
|
+
|
|
930
|
+
The first time you are calling one of these functions, you will get `null` for transfer rates. The second time, you should then get statistics based on the time between the two calls ...
|
|
931
|
+
|
|
932
|
+
So basically, if you e.g. need a value for network stats every second, your code should look like this:
|
|
933
|
+
|
|
934
|
+
```js
|
|
935
|
+
const si = require('systeminformation');
|
|
936
|
+
|
|
937
|
+
setInterval(function() {
|
|
938
|
+
si.networkStats().then(data => {
|
|
939
|
+
console.log(data);
|
|
940
|
+
})
|
|
941
|
+
}, 1000)
|
|
942
|
+
```
|
|
943
|
+
|
|
944
|
+
Beginning with the second call, you get network transfer values per second.
|
|
945
|
+
|
|
946
|
+
## Finding new issues
|
|
947
|
+
|
|
948
|
+
I am happy to discuss any comments and suggestions. Please feel free to contact me if you see any possibility of improvement!
|
|
949
|
+
|
|
950
|
+
|
|
951
|
+
## Comments
|
|
952
|
+
|
|
953
|
+
If you have ideas or comments, please do not hesitate to contact me.
|
|
954
|
+
|
|
955
|
+
|
|
956
|
+
Happy monitoring!
|
|
957
|
+
|
|
958
|
+
Sincerely,
|
|
959
|
+
|
|
960
|
+
Sebastian Hildebrandt, [+innovations](http://www.plus-innovations.com)
|
|
961
|
+
|
|
962
|
+
## Credits
|
|
963
|
+
|
|
964
|
+
Written by Sebastian Hildebrandt [sebhildebrandt](https://github.com/sebhildebrandt)
|
|
965
|
+
|
|
966
|
+
#### Contributors
|
|
967
|
+
|
|
968
|
+
- Guillaume Legrain [glegrain](https://github.com/glegrain)
|
|
969
|
+
- Riccardo Novaglia [richy24](https://github.com/richy24)
|
|
970
|
+
- Quentin Busuttil [Buzut](https://github.com/Buzut)
|
|
971
|
+
- lapsio [lapsio](https://github.com/lapsio)
|
|
972
|
+
- csy [csy](https://github.com/csy1983)
|
|
973
|
+
- Tiago Roldão [tiagoroldao](https://github.com/tiagoroldao)
|
|
974
|
+
- dragonjet [dragonjet](https://github.com/dragonjet)
|
|
975
|
+
- Adam Reis [adamreisnz](https://github.com/adamreisnz)
|
|
976
|
+
- Jimi M [ItsJimi](https://github.com/ItsJimi)
|
|
977
|
+
- Git² [GitSquared](https://github.com/GitSquared)
|
|
978
|
+
- weiyin [weiyin](https://github.com/weiyin)
|
|
979
|
+
- Jorai Rijsdijk [Erackron](https://github.com/Erackron)
|
|
980
|
+
- Rasmus Porsager [porsager](https://github.com/porsager)
|
|
981
|
+
- Nathan Patten [nrpatten](https://github.com/nrpatten)
|
|
982
|
+
- Juan Campuzano [juancampuzano](https://github.com/juancampuzano)
|
|
983
|
+
- Ricardo Polo [ricardopolo](https://github.com/ricardopolo)
|
|
984
|
+
- Miłosz Dźwigała [mily20001](https://github.com/mily20001)
|
|
985
|
+
- cconley717 [cconley717](https://github.com/cconley717)
|
|
986
|
+
- Maria Camila Cubides [MariaCamilaCubides](https://github.com/MariaCamilaCubides)
|
|
987
|
+
- Aleksander Krasnicki [plakak](https://github.com/plakak)
|
|
988
|
+
- Alexis Tyler [OmgImAlexis](https://github.com/OmgImAlexis)
|
|
989
|
+
- Simon Smith [si458](https://github.com/si458)
|
|
990
|
+
|
|
991
|
+
OSX Temperature: credits here are going to:
|
|
992
|
+
|
|
993
|
+
- Frank Stock [pcafstockf](https://github.com/pcafstockf) - for his work on [smc-code][smc-code-url]
|
|
994
|
+
|
|
995
|
+
## Copyright Information
|
|
996
|
+
|
|
997
|
+
Linux is a registered trademark of Linus Torvalds. Apple, macOS, OS X are registered trademarks of Apple Inc.,
|
|
998
|
+
Windows is a registered trademark of Microsoft Corporation. Node.js is a trademark of Joyent Inc.,
|
|
999
|
+
Intel is a trademark of Intel Corporation, AMD is a trademark of Advanced Micro Devices Inc.,
|
|
1000
|
+
Raspberry Pi is a trademark of the Raspberry Pi Foundation, Debian is a trademark of the Debian Project,
|
|
1001
|
+
Ubuntu is a trademark of Canonical Ltd., FreeBSD is a registered trademark of The FreeBSD Foundation,
|
|
1002
|
+
NetBSD is a registered trademark of The NetBSD Foundation, Docker is a trademark of Docker, Inc., Sun,
|
|
1003
|
+
Solaris, OpenSolaris and registered trademarks of Sun Microsystems, VMware is a trademark of VMware Inc,
|
|
1004
|
+
Virtual Box is a trademark of Oracle Corporation, Xen is a registered trademark of Xen Project,
|
|
1005
|
+
QEMU is a trademark of Fabrice Bellard, bochs is a trademark of The Bochs Project, USB and USB Logo
|
|
1006
|
+
are trademarks of USB Implementation Forum, Bluetooth and Bluetooth Logo are trademarks of Bluetooth SIG.
|
|
1007
|
+
|
|
1008
|
+
All other trademarks are the property of their respective owners.
|
|
1009
|
+
|
|
1010
|
+
## License [![MIT license][license-img]][license-url]
|
|
1011
|
+
|
|
1012
|
+
>The [`MIT`][license-url] License (MIT)
|
|
1013
|
+
>
|
|
1014
|
+
>Copyright © 2014-2021 Sebastian Hildebrandt, [+innovations](http://www.plus-innovations.com).
|
|
1015
|
+
>
|
|
1016
|
+
>Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
1017
|
+
>of this software and associated documentation files (the "Software"), to deal
|
|
1018
|
+
>in the Software without restriction, including without limitation the rights
|
|
1019
|
+
>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
1020
|
+
>copies of the Software, and to permit persons to whom the Software is
|
|
1021
|
+
>furnished to do so, subject to the following conditions:
|
|
1022
|
+
>
|
|
1023
|
+
>The above copyright notice and this permission notice shall be included in
|
|
1024
|
+
>all copies or substantial portions of the Software.
|
|
1025
|
+
>
|
|
1026
|
+
>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
1027
|
+
>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
1028
|
+
>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
1029
|
+
>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
1030
|
+
>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
1031
|
+
>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1032
|
+
>THE SOFTWARE.
|
|
1033
|
+
>
|
|
1034
|
+
>Further details see [LICENSE](LICENSE) file.
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
[npm-image]: https://img.shields.io/npm/v/systeminformation.svg?style=flat-square
|
|
1038
|
+
[npm-url]: https://npmjs.org/package/systeminformation
|
|
1039
|
+
[downloads-image]: https://img.shields.io/npm/dm/systeminformation.svg?style=flat-square
|
|
1040
|
+
[downloads-url]: https://npmjs.org/package/systeminformation
|
|
1041
|
+
|
|
1042
|
+
[lgtm-badge]: https://img.shields.io/lgtm/grade/javascript/g/sebhildebrandt/systeminformation.svg?style=flat-square
|
|
1043
|
+
[lgtm-badge-url]: https://lgtm.com/projects/g/sebhildebrandt/systeminformation/context:javascript
|
|
1044
|
+
[lgtm-alerts]: https://img.shields.io/lgtm/alerts/g/sebhildebrandt/systeminformation.svg?style=flat-square
|
|
1045
|
+
[lgtm-alerts-url]: https://lgtm.com/projects/g/sebhildebrandt/systeminformation/alerts
|
|
1046
|
+
|
|
1047
|
+
[sponsor-badge]: https://img.shields.io/badge/-Buy%20me%20a%20coffee-blue?style=flat-square
|
|
1048
|
+
[sponsor-url]: https://www.buymeacoffee.com/systeminfo
|
|
1049
|
+
|
|
1050
|
+
[license-url]: https://github.com/sebhildebrandt/systeminformation/blob/master/LICENSE
|
|
1051
|
+
[license-img]: https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square
|
|
1052
|
+
[npmjs-license]: https://img.shields.io/npm/l/systeminformation.svg?style=flat-square
|
|
1053
|
+
[changelog-url]: https://github.com/sebhildebrandt/systeminformation/blob/master/CHANGELOG.md
|
|
1054
|
+
[changes5-url]: https://systeminformation.io/changes.html
|
|
1055
|
+
[caretaker-url]: https://github.com/sebhildebrandt
|
|
1056
|
+
[caretaker-image]: https://img.shields.io/badge/caretaker-sebhildebrandt-blue.svg?style=flat-square
|
|
1057
|
+
|
|
1058
|
+
[nodejs-url]: https://nodejs.org/en/
|
|
1059
|
+
[docker-url]: https://www.docker.com/
|
|
1060
|
+
[systeminformation-url]: https://systeminformation.io
|
|
1061
|
+
|
|
1062
|
+
[daviddm-img]: https://img.shields.io/david/sebhildebrandt/systeminformation.svg?style=flat-square
|
|
1063
|
+
[daviddm-url]: https://david-dm.org/sebhildebrandt/systeminformation
|
|
1064
|
+
|
|
1065
|
+
[issues-img]: https://img.shields.io/github/issues/sebhildebrandt/systeminformation.svg?style=flat-square
|
|
1066
|
+
[issues-url]: https://github.com/sebhildebrandt/systeminformation/issues
|
|
1067
|
+
[closed-issues-img]: https://img.shields.io/github/issues-closed-raw/sebhildebrandt/systeminformation.svg?style=flat-square&color=brightgreen
|
|
1068
|
+
[closed-issues-url]: https://github.com/sebhildebrandt/systeminformation/issues?q=is%3Aissue+is%3Aclosed
|
|
1069
|
+
|
|
1070
|
+
[new-issue]: https://github.com/sebhildebrandt/systeminformation/issues/new/choose
|
|
1071
|
+
|
|
1072
|
+
[mmon-npm-url]: https://npmjs.org/package/mmon
|
|
1073
|
+
[mmon-github-url]: https://github.com/sebhildebrandt/mmon
|
|
1074
|
+
|
|
1075
|
+
[smc-code-url]: https://github.com/pcafstockf/smc-reader
|