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

@talocode/forgecad

v0.1.0

Published

Local-first CAD workflow engine for generating parametric CAD scripts, manufacturing notes, BOMs and design reports.

Readme

ForgeCAD

Local-first CAD workflow by Talocode

Generate parametric OpenSCAD scripts, manufacturing notes, BOMs, cut lists, printability checks, and engineering design reports from product requirements.

What it does

  • Parametric OpenSCAD-style CAD script generation
  • BOM and cut list generation
  • FDM printability and manufacturability checks
  • Design review reports with safety warnings
  • Optional OpenSCAD render wrapper (when installed)

Not certified engineering software. All outputs require human engineering review.

Install

npm install @talocode/forgecad

CLI

npx forgecad generate --type enclosure --description "Arduino enclosure" --length 120 --width 80 --height 40 --unit mm --material PETG
npx forgecad openscad --type bracket --length 100 --width 40 --height 60
npx forgecad printability --file design.json
npx forgecad tools
npx forgecad --cloud generate --type enclosure --description "Hosted via Talocode Cloud"

SDK

import { ForgeCADClient } from '@talocode/forgecad'

const forgecad = new ForgeCADClient({
  apiKey: process.env.TALOCODE_API_KEY,
  baseUrl: process.env.TALOCODE_BASE_URL,
})

const design = await forgecad.design.generate({
  projectType: 'enclosure',
  description: 'Arduino electronics enclosure',
  dimensions: { length: 120, width: 80, height: 40, unit: 'mm' },
  manufacturingMethod: 'fdm_3d_printing',
  material: 'PETG',
})

API

| Method | Path | Credits | |--------|------|---------| | GET | /v1/forgecad/health | — | | POST | /v1/forgecad/design/generate | 60 | | POST | /v1/forgecad/openscad/generate | 40 | | POST | /v1/forgecad/bom/generate | 20 | | POST | /v1/forgecad/cutlist/generate | 20 | | POST | /v1/forgecad/assembly/plan | 25 | | POST | /v1/forgecad/printability/check | 25 | | POST | /v1/forgecad/manufacturability/check | 30 | | POST | /v1/forgecad/design/review | 40 | | POST | /v1/forgecad/material/estimate | 20 | | POST | /v1/forgecad/tools/detect | 5 | | POST | /v1/forgecad/render/openscad | 80 | | POST | /v1/forgecad/export/markdown | 5 | | POST | /v1/forgecad/export/json | 5 |

Local server

FORGECAD_ALLOW_LOCAL_UNAUTH=true npm start
curl http://localhost:3060/v1/forgecad/health

Environment

TALOCODE_API_KEY=
TALOCODE_BASE_URL=https://api.talocode.site
FORGECAD_ALLOW_LOCAL_UNAUTH=true
FORGECAD_OPENSCAD_BIN=
FORGECAD_FREECAD_BIN=

Limitations

  • Not certified for structural, medical, aerospace, or safety-critical use
  • No FEA/CFD validation
  • OpenSCAD/FreeCAD rendering requires external tools
  • Generated designs are drafts for human review
  • Does not generate weapon or harmful device designs

Support

Open-source Talocode products are built and maintained by Abdulmuiz Adeyemo.

Sponsor the work: https://github.com/sponsors/Abdulmuiz44

License

MIT — see LICENSE