
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
dragon-lang
Advanced tools
Object orientated, dynamically typed, interpreted programming language inspired by Python and Javascript.
🐉 Dragon is an object orientated, interpreted language that acts as an easy-to-use scripting language, employing dynamic but strong typing and object oriented programming to make programming as nice as possible.
// fibonacci.drg
// print first one hundred numbers in the fibonacci sequence
class Fibonacci {
init() {
this.a = 0;
this.b = 1;
}
next() {
var newValue = this.a + this.b;
this.a = this.b;
this.b = newValue;
return newValue;
}
}
function run(times) {
var fibonacci = Fibonacci();
for (var i = 0; i < times; i = i + 1) {
print(fibonacci.next());
}
}
run(100);
You can get started by following the tutorial provided with the documentation here.
Author: Tom
FAQs
Object orientated, dynamically typed, interpreted programming language inspired by Python and Javascript.
The npm package dragon-lang receives a total of 0 weekly downloads. As such, dragon-lang popularity was classified as not popular.
We found that dragon-lang 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.