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

jscad-object-api

v2.0.0

Published

Object wrappers of the JSCAD geometries

Readme

jscad-object-api

Object API for JSCAD

This project contains a set of objects that wrap the JSCAD geometries.

Overview

The JSCAD API provides 2D and 3D geometries as set of functions that operate on those geometries.

This project wraps the JSCAD geometries with an object prototype, providing object specific methods. This allows designs to be written using Javascript object nomenclature.

  • Geom2 : wrapper for JSCAD geom2 with associated methods, as well as static functions to create primitives
  • Geom3 : wrapper for JSCAD geom3 with associated methods, as well as static functions to create primitives
  • Path2 : wrapper for JSCAD path2 with associated methods, as well as static functions to create primitives

Table of Contents

Installation

For Node.js based projects, this package can be installed using NPM.

npm install jscad-object-api

Usage

For Node.js based projects, just add the approprate require statement to access the API functions.

const {Geom2, Geom3, Path2} = require('jscad-object-api')

Now the classes can be used within your JSCAD project.

const {Geom2} = require('jscad-object-api')

const main = (params) => {
  let obj0 = Geom2.rectangle({size: [120, 40]})

  let obj1 = obj0.rotate([0, 0, Math.PI/2]).center({center: [60.0000, -20.0000, 0]})
  obj1 = obj1.colorize([1, 0, 0, 1])

  return [obj0.geometry, obj1.geometry] // RETURN JSCAD GEOMETRIES
}

module.exports = { main }

Note: JSCAD geometries must be returned from main(), so don't forget.

JSCAD Projects (Designs)

If not already, create a new folder for the project. (This example is using 'newproject' as the folder name.)

Download this package by clicking on the green 'CODE' button, and select 'Download ZIP'. Then unzip the contents.

Copy the dist/jscad-objects.commonjs.js file into the project, i.e. the 'newproject' directory.

Inside the project folder, create a file called index.js, and add the following code.

const { Geom3 } = require('.jscad-objects.commonjs.js')

const main = (params) => {
  const segments = 64

  const obj1 = new Geom3.cube({ size: 300 }).subtract( Geom3.sphere({ radius: 200, segments })).colorize([1.0, 0.4, 1.0])
  const obj2 = new Geom3.sphere({ radius: 130, segments }).intersect( Geom3.cube({ size: 210 })).colorize([1.0, 1.0, 0])

  return [obj1.geometry, obj2.geometry]
}

module.exports = { main }

The project folder (newproject) should now have the following contents.

    index.js
    jscad-objects.commonjs.js

Done!

Now, just drag and drop the project folder onto the JSCAD design website.

License

The MIT License (MIT)