New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@kagaribi/core

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@kagaribi/core

Core library for kagaribi microservices framework

latest
Source
npmnpm
Version
0.3.0
Version published
Maintainers
1
Created
Source

@kagaribi/core

Core library for the kagaribi microservices framework.

Installation

npm install @kagaribi/core

What's Included

  • defineConfig() / definePackage() - Configuration helpers
  • getClient() - Type-safe inter-package RPC (local or remote)
  • proxyMiddleware() - HTTP proxy for remote packages
  • buildProject() / deployProject() - Build and deploy orchestration
  • scaffoldPackage() / initProject() - Project and package scaffolding
  • kagaribiParamsMiddleware() - Path parameter extraction for nested routing

Basic Usage

import { defineConfig } from '@kagaribi/core';

export default defineConfig({
  packages: {
    root: { target: 'node' },
    auth: { colocateWith: 'root' },
  },
});
import { getClient } from '@kagaribi/core';
import type { UsersApp } from '../../users/src/index.js';

const users = getClient<UsersApp>('users');
const res = await users.api.users.$get();

License

MIT

Keywords

hono

FAQs

Package last updated on 15 Mar 2026

Did you know?

Socket

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.

Install

Related posts