
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
define-constants
Advanced tools
Gets rid of repeating stuff when declaring self-defined constants.
Instead of typing things twice:
const MY_CONSTANT = "MY_COSNTANT" // note a mistype
const MY_FAVOURITE_CONSTANT = "MY_FAVOURITE_CONSTANT"
const MY_CONSTANT_FOR_FUN = "MY_CONSTANT_FOR_FUN"
You can type things once:
import defineConstants from 'define-constants'
const {
MY_CONSTANT,
MY_FAVOURITE_CONSTANT,
MY_CONSTANT_FOR_FUN,
} = defineConstants()
// MY_CONSTANT === "MY_CONSTANT"
// MY_FAVOURITE_CONSTANT === "MY_FAVOURITE_CONSTANT"
// MY_CONSTANT_FOR_FUN === "MY_CONSTANT_FOR_FUN"
and get them correct.
Anyway your console.log(MY_VARIABLE)
will show the right text and you will never get frustrated searching for a mistyped constant.
You can also add some namespace to your constants:
const {
MY_NAMESPACE,
} = defineConstants()
const {
MY_CONSTANT,
MY_FAVOURITE_CONSTANT,
MY_CONSTANT_FOR_FUN,
} = defineConstants(MY_NAMESPACE)
// MY_CONSTANT === "MY_NAMESPACE.MY_CONSTANT"
// MY_FAVOURITE_CONSTANT === "MY_NAMESPACE.MY_FAVOURITE_CONSTANT"
// MY_CONSTANT_FOR_FUN === "MY_NAMESPACE.MY_CONSTANT_FOR_FUN"
Tweak namespace delimiter if you wish:
const {
MY_CONSTANT,
MY_FAVOURITE_CONSTANT,
MY_CONSTANT_FOR_FUN,
} = defineConstants("MY_NAMESPACE", "/")
// MY_CONSTANT === "MY_NAMESPACE/MY_CONSTANT"
// MY_FAVOURITE_CONSTANT === "MY_NAMESPACE/MY_FAVOURITE_CONSTANT"
// MY_CONSTANT_FOR_FUN === "MY_NAMESPACE/MY_CONSTANT_FOR_FUN"
TODO: babel plugin to transform the code at compile time.
Returns {} an object with properties containing their names as values.
FAQs
Utility for declaring self-defined constants.
The npm package define-constants receives a total of 1 weekly downloads. As such, define-constants popularity was classified as not popular.
We found that define-constants 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.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.