
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@actbase/node-server
Advanced tools
Node.js를 위한 express기반의 웹 프레임워크.
const app = require('@actbase/node-server');
app.run();
@actbase/node-server는 npm registry를 통해 사용할 수 있는 Node.js 모듈 입니다.
설치하기 전에 Node.js를 다운로드하여 설치해주세요. Node.js 0.10 이상이 필요합니다.
만약 새로운 프로젝트를 만들 경우 npm init을 사용하여 프로젝트를 생성 합니다.
설치는 npm install을 사용하여 설치됩니다.
$ npm install @actbase/node-server
import { createRoute } from '@actbase/node-server';
import UserService from '../services/UserSerivce';
const execute = ({ user }) => {
return UserService.getMe(user);
};
export default createRoute(
{
method: 'GET',
uri: '/me',
},
execute,
{
tags: 'User',
description: 'Get Me',
},
);
import { createModel, TypeIs } from '@actbase/node-server';
const User = createModel(
'users',
{
username: { type: TypeIs.STRING, comment: '아이디' },
password: { type: TypeIs.STRING, comment: '비밀번호' },
},
{
with: ['*'],
},
);
export default User;
import { createDto } from '@actbase/node-server';
import User from '../models/User';
export default createDto(
'UserMeDto',
{
username: { type: TypeIs.STRING, comment: '아이디' },
},
{
defineModel: User,
},
);
import { createService } from '@actbase/node-server';
import User from '../models/User';
import UserMeDto from '../dtos/UserMeDto';
export default createService({
getMe: (repo, [user]) => {
const userMe = repo.findOne(User, {
exportTo: UserMeDto,
where: {
id: user.id,
},
});
if (!userMe) throw { status: 404, message: 'Not found User' };
return UserMeDto.map(userMe);
},
});
FAQs
Node Server Framework
The npm package @actbase/node-server receives a total of 2 weekly downloads. As such, @actbase/node-server popularity was classified as not popular.
We found that @actbase/node-server demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.