Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Remult is a lightweight web application framework for Full-Stack TypeScript.
import { Entity, EntityBase, Field } from 'remult';
@Entity('Products', {
allowApiCrud: true
})
export class Product extends EntityBase {
@Field()
name: string = '';
@Field()
unitPrice: number = 0;
}
static increasePriceOfTofu(priceIncrease: number) {
const product = await remult.repo(Product).findFirst(p => p.name.isEqualTo('Tofu'));
product.unitPrice += priceIncrease;
await product.save();
}
@BackendMethod({ allowed: Allow.authenticated })
static increasePriceOfTofu(priceIncrease: number, remult?: Remult) {
const product = await remult.repo(Product).findFirst(p => p.name.isEqualTo('Tofu'));
product.unitPrice += priceIncrease;
await product.save();
}
@Entity<Article>('Articles', {
allowApiRead: true,
allowApiInsert: remult => remult.authenticated(),
allowApiUpdate: (remult, article) => article.author.id == remult.user.id
})
export class Article extends EntityBase {
@Field({ allowApiUpdate: false })
slug: string;
@Field({ allowApiUpdate: false })
author: Profile;
@Field()
content: string;
}
npm i remult
import * as express from 'express';
import { initExpress } from 'remult/server';
import 'entities';
let app = express();
initExpress(app);
app.listen(3002, () => console.log("Server started"));
FAQs
A CRUD framework for full-stack TypeScript
We found that remult demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.