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

parapoly-runtime

v1.0.5

Published

ParaPoly 3D CAD Runtime — CSG modeling, sketch, and project builder

Downloads

879

Readme

parapoly-runtime

ParaPoly 3D CAD Runtime — CSG modeling, sketch, and project builder.

Installation

# 项目内安装
npm install parapoly-runtime

# 全局安装(注册 code3d-build 命令)
npm install -g parapoly-runtime

Usage (Library)

import { buildCode3dProject, Code3dProjectConfig } from 'parapoly-runtime';

Usage (CLI)

# 全局安装后,在项目目录执行
code3d-build [workspace-dir] [options]

# 或通过 node 直接运行
node node_modules/parapoly-runtime/cli/code3d-build.js ./my-project

CLI Options

| Option | Description | |--------|-------------| | [workspace-dir] | 项目目录路径(含 package.json),默认当前目录 | | --no-bin | 输出纯文本 .code3d.js(默认输出 gzip 的 .code3d.js.bin) |

Install AI Instructions

安装 Code3D AI 编程辅助指令到当前项目(让 GitHub Copilot 等 AI 了解 Code3D API 规范):

code3d-install-instructions

# 或通过 node 直接运行
node node_modules/parapoly-runtime/cli/code3d-install-instructions.js

或指定目标目录:

code3d-install-instructions ./my-project

安装后会在项目中生成 .github/instructions/ 目录,AI 编程助手会自动读取其中的规范。

Uninstall

# 取消全局安装(移除 code3d-build 命令)
npm uninstall -g parapoly-runtime

# 查看全局安装位置
npm ls -g parapoly-runtime

Build mode

This package was built in production mode.