
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.
@lamnhan/schemata
Advanced tools
Commonly used data models.
npm i @lamnhan/schemata
Use the interface:
import { Post } from '@lamnhan/schemata';
const posts: Post[] = [];
const recordPosts: Record<string, Post> = {};
const post: Post = {
id: '...',
title: '...',
};
npm i @lamnhan/ngx-schemata
Use services:
import { PostDataService } from '@lamnhan/ngx-schemata';
class Foo {
public readonly posts$ = this.postDataService.list();
public readonly post$ = this.postDataService.get('foo');
}
Use pipes:
// listing pipe
import { PostsDataPipeModule } from '@lamnhan/ngx-schemata';
// getting pipe
import { PostDataPipeModule } from '@lamnhan/ngx-schemata';
<!-- listing -->
<div *ngIf="10 | posts | async; let items">
<ul *ngIf="items.length">
<li *ngFor="let item of items">{{ item.title }}</li>
</ul>
</div>
<!-- getting -->
<div *ngIf="'foo' | post | async; let item">
<h1>{{ item.title }}</h1>
</div>
categories :earth_asia:tags :earth_asia:pages :earth_asia:posts :earth_asia:authors :earth_asia:threads :earth_asia:users :x:options :earth_asia:bundles :earth_asia:audios :earth_asia:videos :earth_asia:products :earth_asia:orders :x:notifications :earth_asia:promotions :earth_asia:@lamnhan/schemata is released under the MIT license.
FAQs
Commonly used data models.
We found that @lamnhan/schemata 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.