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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@jqms/system_service

v1.0.1

Published

JQMS system HTTP services for shared frontend packages

Readme

@jqms/system_service

JQMS 系统级 HTTP Service 包,供业务应用与 @jqms/components_lib 共同使用。请求统一走 @jqms/utils/request

当前版本以 npm 与 package.json 为准(仓库内为 1.0.0)。


安装

pnpm add @jqms/system_service @jqms/utils

子路径导出

| 导入路径 | 说明 | 主要方法 | | --- | --- | --- | | @jqms/system_service/dict | 字典 | getDictslistData… | | @jqms/system_service/sso | SSO / 登录 | loginuseRefreshToken… | | @jqms/system_service/user | 用户 | listUsergetUserByWorkNogetUserByWorkNoListdownloadFtpImage | | @jqms/system_service/dept | 部门 | treeselect | | @jqms/system_service/k2 | K2 流程 | getActivityViewlistHistory | | @jqms/system_service/file | 文件 / 预览下载 | getSysFileListpreviewFiledownloadPdfBase64reviewFileInFTPdccFileInfolinkToDccdownloadFile | | @jqms/system_service/dcc | DCC | getDCCPreviewUrlgetDCCFileInfo | | @jqms/system_service/customer | 工厂客户 | customerDetailqueryPlantCustomer |

与组件库配合

@jqms/components_lib 内部直接依赖上述 service,宿主无需再通过插件 services 注入 HTTP 实现。

import { createJqmsComponentsPlugin } from '@jqms/components_lib'
// 只需配置 i18n / 用户 / 字典 / URL 等宿主能力
app.use(createJqmsComponentsPlugin({ /* ... */ }))

业务代码也可直接使用:

import { listUser, getUserByWorkNo } from '@jqms/system_service/user'
import { treeselect } from '@jqms/system_service/dept'

Peer 依赖

  • @jqms/utils
  • element-plus(文件预览相关提示)

发布

当前为 source 直出(exports 指向 .ts)。在基础设施仓库中维护源码,通过 pnpm publish 发布到 npm。发布前确保宿主 Vite 能解析 TypeScript 子路径;后续如需 dist 构建,可参考 @jqms/components_lib 的打包方式。

cd packages/jqms_system_service
pnpm publish