Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Rust-like enum, Result, Option, impl and match for javascript.
enum
struct
impl
trait
iter
panic
(not a macro)match
Result
Option
npm install rusted
These examples require es6 transpiler.
enum
(and impl
(and match
))import {Enum,impl,match} from 'rusted';
/*
enum Message {
Quit,
ChangeColor(i32,i32,i32),
Move {x:i32, y:i32},
Write(String)
}
*/
let Message=Enum({
Quit:null,
ChangeColor:[0,0,0],
Move:{x:0,y:0},
Write:''
});
// let x: Message = Message::Move { x: 3, y: 4 };
let x=Message.Move({x:3,y:4});
// let y: Message = Message::Quit;
let y=Message.Quit;
impl(Message,{
print(self){
console.log(match(self,{
Quit:()=>'Quit!',
ChangeColor:[r,g,b]=>`Changed to ${r},${g},${b}`,
Move:{x,y}=>`Moved to (${x},${y})`,
Write:x=>x
}));
}
});
x.print(); // > Moved to (3,4)
y.print(); // > Quit!
struct
(and impl
)struct
checks type of property when instantiate.
'any'
'number'
,'string'
,'object'
... (String)
typeof value_of_prop
Object
,Array
,Number
... (Constructor)
value_of_prop.constructor
import {struct,impl} from 'rusted';
let Circle=struct({
x:'number',
y:'number',
radius:'number'
});
impl(Circle,{
area(self){
return Math.PI*(self.radius*self.radius);
}
});
let c=Circle({
x:0,y:0,
radius:2
});
console.log(c.area()); // > 12.56...
Option
import {Some,None,match} from 'rusted';
let divide=(numerator,denominator)=>{
return denominator==0
? None
: Some(numerator/denominator);
};
let result = divide(2.0, 3.0);
match(result,{
Some:x=>console.log(`Result: ${x}`),
None:()=>console.log('Cannot divide by 0')
});
// > Result: 0.666...
Result
import {Ok,Err,match} from 'rusted';
function Foo(x){
if(x>5){
return Ok(x);
}else{
return Err('Less than 5 !');
}
}
console.log(match(Foo(3),{
Ok:x=>x,
Err:e=>e
}));
// > Less than 5 !
console.log(Foo(10).unwrap());
// > 10
console.log(Foo(3).unwrap());
// throws error
(es5 version.)
var rusted=require('rusted'),
Ok=rusted.Ok,
Err=rusted.Err,
match=rusted.match;
function Foo(x){
if(x>5){
return Ok(x);
}else{
return Err('Less than 5 !');
}
}
console.log(match(Foo(3),{
Ok:function(x){
return x;
},
Err:function(e){
return e;
}
}));
console.log(Foo(10).unwrap());
console.log(Foo(3).unwrap());
MIT
FAQs
Rust like enum, Result and Option for javascript
The npm package rusted receives a total of 9 weekly downloads. As such, rusted popularity was classified as not popular.
We found that rusted 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
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.