
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.
sourcescript
Advanced tools
SourceScript is a small and simple programming language that aims to simplifiy programming configurations for Valve's games based on the Source Engine.
Make sure to have Node.js installed.
npm install --save-dev sourcescript
To compile scripts via the API (a command-line interface not done yet), load SourceScript and call compile.
SourceScript = require 'SourceScript'
files =
'some/folder/autoexec.ss': 'echo "hello world"'
try
out = SourceScript.compile files
catch e
console.log e
You can also create custom compiler commands (commands beginning with a :) through plugins.
SourceScript = require 'SourceScript'
nodes = SourceScript.nodes
files =
'some/folder/autoexec.ss': 'echo "hello world"'
options =
plugins:
uselesscomment: (cmd) ->
new nodes.Comment 'This comment is so useless'
try
out = SourceScript.compile files, options
catch e
console.log e
Now whenever you call :uselesscomment in your code, it will be replaced with a comment.
FAQs
A scripting language on top of Valve's Source Engine Config.
We found that sourcescript 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
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.