Gathering detailed insights and metrics for craydent-fs
Gathering detailed insights and metrics for craydent-fs
Gathering detailed insights and metrics for craydent-fs
Gathering detailed insights and metrics for craydent-fs
npm install craydent-fs
Typescript
Module System
Node Version
NPM Version
TypeScript (62.82%)
JavaScript (37.02%)
Shell (0.17%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
259 Commits
1 Watchers
2 Branches
2 Contributors
Updated on Aug 15, 2022
Latest Version
1.0.2
Package Id
craydent-fs@1.0.2
Unpacked Size
51.04 kB
Size
7.58 kB
File Count
22
NPM Version
10.5.2
Node Version
21.4.0
Published on
Sep 20, 2024
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
36
by Clark Inada
Craydent is all inclusive utility library. There are several ways to use the library in NodeJS. More detailed documentation on constants can be found at Craydent Properties. More detailed documentation on methods can be found at Craydent Methods
1// require with prototypes - this require will add prototypes to extend classes and add two constants ($c, $g) to the global space. 2// $g is an alias to global and $c is the constant containing all the utility methods and properties. 3require('craydent-fs'); 4$c.logit($c.VERSION); 5arr.prototypedMethod(args);
1// require no conflict - this require is the fully modular version with no global constants, prototypes, or methods. 2var $c = require('craydent-fs/noConflict'); 3$c.logit($c.VERSION); 4$c.prototypedMethod(arr, args);
1// require global - this require constants and methods in the global space and add prototypes to extend classes. 2// $g is an alias to global and $c is the constant containing all the utility methods and properties. 3require('craydent-fs/global'); 4logit($c.VERSION); 5arr.prototypedMethod(args);
CONSOLE_COLORS (Object) | LOCAL_IP (String) | TEMPLATE_TAG_CONFIG (Object) |
DEBUG_MODE (Boolean) | MODULES_LOADED (Object) | TEMPLATE_VARS (Array) |
ERROR_TYPES (Array) | PUBLIC_IP (String) | VERSION (String) |
HTTP_STATUS_TEMPLATE (Object) | RESPONSES (Object) |
Info: (Depricated) A promisified version of access. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of appendFile. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of chmod. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of chown. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of close. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of copyFile. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of fchmod. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of fchown. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of fdatasync. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of fstat. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | fs.Stats)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of fsync. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of ftruncate. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of futimes. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of lchmod. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of lchown. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of link. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of lstat. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | fs.Stats)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of mkdir. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of mkdtemp. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of open. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | number)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of read. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | FSByteData
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of readFile. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | string | Buffer)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of readdir. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | string[] | Buffer[] | fs.Dirent[])
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of readlink. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | string | Buffer)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of realpath. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | string | Buffer)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of rename. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of rmdir. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of stat. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | fs.Stats)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of symlink. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of truncate. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated)A promisified version of unlink. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of utimes. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of write. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
Info: (Depricated) A promisified version of writeFile. The arguments are the same as the native fs methods minus the callback.
Return: (NodeJS.ErrnoException | void)
Parameters:
None
Overloads:
None
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
Reason
security policy file not detected
Details
Reason
license file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Reason
12 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More