
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
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.
dreamscript
Advanced tools
DreamScript is a Programming Language That Makes It Easy For You To Code Or Develop Your Web Application
DreamScript is a Programming Language That Makes It Easy For You To Code Or Develop Your Web Application
[
npm install -g dreamscript
npm install --save dreamscript
npx dreamscript
Put the dreamscript.exe in C:\Users\ASUS\AppData\Roaming\npm
~$ dreamscript run <your file or directory file>
atau
~$ dreamscript cmp <your file or directory file>
atau
for any command, you can see at:
~$ dreamscript -h
Example
.
├── code
└── lib
├── index.ds
└── code.ds
$ dreamscript dir code lib
this command will compile all files in the lib
folder and write the compilation results to the code
folder with the same name and the extension js
.
├── code
│ ├── index.js
│ └── code.js
└── lib
├── index.ds
└── code.ds
const ds = require("dreamscript");
var code = `
func ds(){
write("hello, world");
}
ds();
`;
// compile code
ds.compile(code).then(compiled => {
console.log(compiled);
});
const ds = require("dreamscript");
var code = `
func ds(){
write("hello, world");
}
ds();
`;
;(async () => {
// run code
await ds.run(code)
});
Full Docs, you can see at :
https://zsofttt.github.io/DreamScript
FAQs
Dreamscript is a JavaScript-based programming language that can be used more simply and easily, Designed to make it easier for Developers.
The npm package dreamscript receives a total of 0 weekly downloads. As such, dreamscript popularity was classified as not popular.
We found that dreamscript 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
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.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.