
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
@esolangs/typina
Advanced tools
typina - Pineapple interpreter implemented in TypeScript's type system.
Installation:
npm install --save-dev typescript
npm install --save-dev @esolangs/typina
Example usage:
import Pina from '@esolangs/typina';
type Code = `
$a = "hello"
$b = " world"
$a = "goodbye"
print($a) print($b)
`;
type Output = Pina<Code>; // Output == 'goodbye world'
Screenshots:

If you find this interesting... Hey, Pineapple is not even turing complete.
Being Turing complete itself, Typescript's type system is theoretically capable of implementing ANY programming language. See here for an implementation of the Unlambda programming language (which is Turing complete).
You're likely to get the following error when trying to run a program with typina:
Type instantiation is excessively deep and possibly infinite.ts(2589).
To write loops in TypeScript's type system, we have to use recursions, like we do in other purely functional programming languages. However, TypeScript's type system is not meant for general purpose programming, and recursion has its limits.
In src/compiler/checker.ts, there is a hard-coded limit for type instantiation:
if (instantiationDepth === 50 || instantiationCount >= 5000000) {
// ...
return errorType;
}
You may expect that there is an option somewhere that this limit can be configured, like -ftemplate-depth=n in gcc/clang. Unfortunately, there isn't, and it's likely to stay that way.
To workaround this limitation, we modify the code of tsserver or tsc in node_modules until the error no longer applies. Changing instantiationDepth to 1000 is sufficient to run the example above.
FAQs
Pineapple interpreter implemented in TypeScript's type system
We found that @esolangs/typina 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.