Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
ProxC allows you to create extensible classes using ES6 Proxy objects and design declarative APIs that are a joy to use.
ProxC is an NPM Package that allows you to create extensible classes and design declarative APIs that are a joy to use.
This package was heavily inspired by C++. In C++, you can overload the functionality of basic operators used on a class. This offers a new level of extensibility for defining custom APIs for your class implementations that are often exclusive to more lower-level programming languages.
In Javascript, Proxy Objects allow you to intercept and define custom behavior for fundamental operations such as property lookup/access []
, assignment =
, enumeration, and function invocation ()
. These can be used to design extensible ES6 classes that allow synthetic operator definition with functionality similar to that of operator overloading in languages such as C++.
ProxC aims to combine the functionality of ES6 Proxy Objects with the convenience Javascript Classes. No functionality is gained over using Proxy Objects, however, ProxC allows developers to stay away from convoluted implementation details and define customizable APIs that are both easier to use and maintain.
By extending ProxC in your class definition and defining the following member functions, you are able to design a fully custom interface for your API:
__invoke__(...args: any
) → any
Defines custom behavior for the class invocation/call operator, ()
. Invoked whenever a class instance is called as a function and forwards all arguments. Context is bound to the current class instance enabling you to use this
to refer to internal class state.
If not defined, and the class attempts to be invoked, a TypeError will be thrown.
Example: myClass(1,2)
calls __invoke__(1,2)
on myClass
.
__accessor__(key: number|string
) → any
Defines custom behavior for the class 'get' operator, also known as the 'accessor' or 'index' operator ([]
or .
). Invoked when bracket notation or dot notation is used on a class instance and the supplied key
is not a member of the current class implementation.
If not defined, default behavior is assumed and the class accessor operator will still work as expected.
Example: myClass['hello']
invokes __accessor__('hello')
on myClass
if and only if myClass
does not contain a member named hello
and __accessor__
is implemented.
__iterator__() → any[]
Defines how the class should be treated as an iterable object. Should return an array of elements that can be yielded to for..of
loops.
If not defined, and the class attempts to be iterated, a TypeError will be thrown.
Example: for (const elt of myClass) {...}
loops over the iterable returned by __iterator__
on myClass
.
FAQs
ProxC allows you to create extensible classes using ES6 Proxy objects and design declarative APIs that are a joy to use.
We found that proxc 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.