
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
A TypeScript-based scripting language engineered for data-centric applications, driven by robust data processing capabilities.
This repository contains script implemented in TypeScript for a simple data type language. The parser is designed to tokenize input source code, parse it into an abstract syntax tree (AST), and provide functionalities to traverse and manipulate the AST. These components include functionalities for environment creation, value handling, and runtime operations.
Dependencies
Deno https://deno.com
Mark:1
> const testCase = {
TestCase:"test1",
Number:10,
Array: [1, 2, "Three"],
Boolean: true,
Null: null,
Undefined: undefined,
Object: {
simple: false
}
};
mark(testCase, "TestCase")
{
type: "object",
properties: Map(7) {
"TestCase" => { value: "test1", type: "string" },
"Number" => { value: 10, type: "number" },
"Array" => {
type: "array",
elements: [
{ value: 1, type: "number" },
{ value: 2, type: "number" },
{ value: "Three", type: "string" }
]
},
"Boolean" => { type: "boolean", value: true },
"Null" => { type: "null", value: null },
"Undefined" => { type: "undefined" },
"Object" => {
type: "object",
properties: Map(1) { "simple" => { type: "boolean", value: false } }
}
}
} { value: "TestCase", type: "string" }
>
Mark:1
> function test(x, y) {
let result = x + y;
}
const result = test(10, 10);
mark(result, "TestCase")
{ value: 20, type: "number" } { value: "TestCase", type: "string" }
>
Clone the project
https://github.com/JistScript/Base.git
To start the server:
deno run -A main.ts
To log input Run:
mark(input)
FAQs
A TypeScript-based scripting language engineered for data-centric applications, driven by robust data processing capabilities.
We found that jistscript demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.