
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
definitely
Advanced tools
Find undefined
property bugs close to the source.
$ npm install --save-dev definitely
JavaScript allows you to access nonexistent properties on an object and simply evaluates the expression to undefined
. Usually when this happens it's a bug, but since no error is thrown such bugs can be a difficult to debug as the problem tends to rear its ugly head far from whence it came. For example,
const obj = {
foo: 'bar'
}
someFunction(obj.bar)
obj
has no property bar
, so we're passing undefined
to someFunction
, which may pass it to another function, put it onto a queue, etc. It could be much later and in a completely different area of the code when someone tries to do something they shouldn't with that undefined
value, at which point we'll begin the laborious process of trying to figure out where things went awry.
That's where definitely
comes in:
import definitely from 'definitely'
const definiteObj = definitely({
foo: 'bar'
})
someFunction(definiteObj.bar) // throws "Error: attempted to access nonexistent property `bar`"
Now you've caught the bug right at the source!
The magic that enables this library is an ES2015 feature called Proxy
, which allows intercepting arbitrary property access attempts and deciding what to do with them (in our case we throw an exception if the underlying object is missing the requisite property). Proxy
is not yet supported in all browsers (e.g. IE and Safari) and in Node prior to version 6 requires a special flag (--harmony-proxies
) and shim. If Proxy
is not found in the global scope, this library becomes a no-op.
definitely-loader
, a Webpack loader which verifies that imported names exist within the target module.
FAQs
Disallow undefined property access in JavaScript
The npm package definitely receives a total of 1 weekly downloads. As such, definitely popularity was classified as not popular.
We found that definitely 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.