Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
A simple ES6 class that can be extended to provide macros and getters functionality
Macroable is a small ES6 class that can be extended to add functionality of macros and getters to your own class.
It is helpful if you want to expose an API to get your classes extended.
This library is used by AdonisJs to offer extend interface for core class.
As always, pull it from npm
.
npm i --save macroable
const Macroable = require('macroable')
class User extends Macroable {
}
// it's required to define empty objects for macros and getters.
User._macros = {}
User._getters = {}
Once your class extends Macroable
class, it get's a bunch of static methods to define macros and getters.
User.macro('getUsers', function () {
// do some work
})
and now you can use the method from the class instance.
const user = new User()
user.getUsers()
Getters are values evaluated everytime someone access them.
User.getter('username', function () {
// return username
})
and now you can use the property from the class instance
const user = new User()
user.username
Calling the getter callback everytime may be unrequired, since you do not want to re-compute the values. A singleton getter can also be defined.
User.getter('username', function () {
// I am only called once
}, true)
const user = new User()
user.username // invokes callback and caches value
user.username // returns from cache
If for some reason you want to remove all getters and macros, you can call the hydrate
method.
User.macro('getUsers', callback)
User.hasMacro('getUsers') // true
User.hydrate()
User.hasMacro('getUsers') // false
You can also find whether a getter or macro already exists or not.
User.hasMacro('getUsers')
User.hasGetter('username')
FAQs
A simple ES6 class that can be extended to provide macros and getters functionality
The npm package macroable receives a total of 19,417 weekly downloads. As such, macroable popularity was classified as popular.
We found that macroable 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
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.