
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
enum in javascript
npm i js-enums
const enum = require('js-enums');
var status = enum([
{
name: 'CLOSED',
ortherInfo: 'status close'
},
{
name: 'OPENED',
ortherInfo: 'status open'
}
]);
// or declare in this way:
// var status = enum(['OPENED', 'CLOSED']);
status.OPENED; // { name: 'OPENED', order: 0, ortherInfo: 'status open' }
status.getByOrder(1); // { name: 'OPENED', order: 0, ortherInfo: 'status open'}
status.OPENED.eql('OPENED') // true
compare with enum
return the enum by order
order only can init in first position of the array, and order is increased by step 1.
var status = enum([
{
name: 'CLOSED',
order: 2
},
{
name: 'OPENED',
}
]);
status.OPENED.order; // 3
var status = enum(['OPENED', 'CLOSED']);
status.OPENED.eql('OPENED') // true, eql by name, param must be string
status.OPENED.eql(0) // true, eql by order, param should not be NaN
status.OPENED.eql({name: 'OPENED'}) // true
status.OPENED.eql({name: 'OPENED', order: 2}) // false
status.OPENED.eql({name: 'OPENED', order: 1, ortherInfo: 'status open'}) // true
FAQs
enum in javascript
The npm package js-enums receives a total of 1 weekly downloads. As such, js-enums popularity was classified as not popular.
We found that js-enums 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
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.