![Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts](https://cdn.sanity.io/images/cgdhsj6q/production/1ba0de113c804fecef80d5f68add3d625becba39-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Easily manage a config file in your project.
You always want to make it possible for users to save some custom configs with a Node.js command line tool, such like you made a node-version Git tool and wanna save the configs to /Users/$username/.gitconfig
. That's why I made this tool to facilitate your development.
import Config from 'myconf'
// This points to a file $USER_HOME/.customconfig
const config = new Config('.customconfig')
// or save the file to a custom path
config.path('/path/to/save/to')
// or change a parser, the default is `json`
// parser in ['json', 'yaml']
config.parser('yaml')
// set a property
config
.set('name', 'config for my project')
.then(data => console.log(data.name))
// set multi properties
config
.set({name: 'egoist', version: '1.4.2'})
.then(data => console.log(data))
// get a property
config
.get('name')
.then(name => console.log(name))
// get all properties
config
.get()
.then(data => console.log(data.name))
// override the config file
config
.save({newName: 'inori', oldName: 'will_gone'})
.then(data => console.log(data))
This project is released under SOX license that means you can do whatever you want to do, but you have to open source your copy on github if you let the public uses it. All copies should be released under the same license. The owner of each copy is only reponsible for his own copy, not for the parents, not for the children.
permitted use:
fork on github
change
do evil with your copy
prohibted use:
do evil with copies not of your own
open source your copy without declaring your parent copy
FAQs
Easily manage a config file in your project.
The npm package myconf receives a total of 4,121 weekly downloads. As such, myconf popularity was classified as popular.
We found that myconf demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.