npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

xeasy-orm

v0.5.6

Published

easy orm

Downloads

8

Readme

xeasy-orm

便捷的orm,基于express搭建的简单易用的ORM

快速开始

npm install --save xeasy-orm
or
yarn add xeasy-orm

创建index.ts

import { useHttp } from 'xeasy-orm';

const app = useHttp({
    config: {
        port: 3000,
        debug: true,
    }
})

useHttp: 启动express服务 config为基本配置

  • port: 启动端口号
  • debug:启动日志模式

useHttp config

属性 | 是否必填 | 数据类型 | 说明 ---|---------|----------|------ config | 必填 | object | express基本配置 --port | 必填 | number | 启动端口号 --debug | 必填 | boolean | 是否启动debug模式 routes | 非必填 | Array<express.Router> | 需要加载的路由 hooks | 非必填 | object | express中间件 --befor | 非必填 | Array<express.RequestHandler> | 访问所有api前调用 --after | 非必填 | Array<express.RequestHandler> | 访问所有api后调用 knex | 非必填 | Array<Knex.Config> or Knex.Config | 创建knex对象,需要安装对应的数据库包

这样我们的服务便启动完成了

添加Knex初始化

使用

import {useKnex, getKnexMaster} from 'xeasy-orm';

// 读写分离模式的情况下,可以传递数组,数组的第一位为master数据库,用于写入操作
useKnex({
    client: 'mysql',
    connection: {
        host: 'localhost',
        user: 'root',
        password: 'password',
        database: 'app_test',
        port: 3306,
    }
});

// 使用useKnex获取client对象时,会默认逐个使用数据库连接
const userList = await useKnex().table('user').select(*);
// 使用master写入
await getKnexMaster().table('user').install({name: 'name'});

useKnex 创建knex连接

加入mongoSchema 用于快速创建schema类型,并生成对应的orm

0.5.1 添加knex事务操作