
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
A small helper for getting only the last result of an asynchronous operation you perform multiple times in a row.
Pretty commonly, when performing asynchronous operations, you might fire off multiple of them, but then only care about the last result that comes back. A common example is searching:
$(searchEl).on("input", function (ev) {
doSearch(searchEl.value).then(updateUIWithResults).done();
});
But consider this scenario:
This isn't what you wanted! Once you sent off the search for "dog," you want to ignore any results from the previous search for "do."
Well, this package will solve your problems.
This package's main module has as its default export a single function, last, which you can use to wrap naïve
functions into smart ones that will ignore all but the last result. It works with any function that returns a
Promises/A+-compliant promise. Once you do that, your code can look just as pretty as the
above example, but this time it will actually be correct!
var last = require("last");
var smartSearch = last(doSearch);
$(searchEl).on("input", function (ev) {
smartSearch(searchEl.value).then(updateUIWithResults).done();
});
The wrapped function will return a promise of the same type as that returned by the original. And once you call the wrapped function again, you will be guaranteed that previously-returned pending promises stay pending forever, so you don't have to worry about them coming back later than your new promise.
FAQs
A small helper for getting only the last result of an asynchronous operation you perform multiple times in a row.
The npm package last receives a total of 355 weekly downloads. As such, last popularity was classified as not popular.
We found that last 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.