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 🙏

© 2024 – Pkg Stats / Ryan Hefner

dileep

v0.0.3

Published

Creative coding sketch helper

Downloads

5

Readme

dileep

dileep.js (쌈 as in Korean dish) wraps your HTML5 Canvas sketches and provides helpful features such as animation props and file exports. It is inspired by canvas-sketch.

⚠️ This module is in an early stage of development, and there may be unexpected bugs.

Install

The easiest and quickest way to set up a sketch with dileep is to use create-dileep CLI command. You don't need to install anything (except Node.js) in advance. Simply run the command below and you can jump straight into creative coding:

npm create dileep@latest

The prompts will guide you through options and templates. See create-dileep for the list of templates.

Alternatively, if you only want to install dileep package into your own set up:

npm install dileep

How to

See documentation

Features

  • TypeScript: It can work both in JavaScript or TypeScript projects.
  • ESM: You can use it alongside other ESM packages.
  • Vitejs: Vitejs is modern and fast. You can extend the config to add functionality. dileep also has a few of its own plugins.
  • Multiple sketch modes: It supports vanilla Canvas 2D API, WebGL context, or you can use with other Canvas libraries (Three.js, OGL, Two.js, Pts.js, etc.) as long as they support an existing canvas. p5.js is not supported (yet).
  • Hot Reload: Code updates will be instantly applied without a full page refresh and wthout losing the sketch states.
  • Git snapshot: Commit your code to git and export a frame with the same hash for an easy archiving and retrieval.
  • Timelapse documentation: Automatically export an image when you save your code to create a visual documentation of your project over time.
  • Animation loop: The playhead prop repeats 0..1 and makes it easy to create a seamless animation loop. Other props such as time, frame, deltaTime and loopCount are provided as well. You can also adjust frame rate for playing and exporting independently.
  • Sketch settings: Many essential settings reduce boilerplate code in your sketch - animation duration, playback frame rate, filename, etc.
  • Sketch props: Use props for each mode such as context, width, height to help your coding.
  • File exports: Export canvas as image, animated GIF, PNG sequence or MP4/WebM video at various frame rates.

Example

import { dileep } from "dileep";
import type { Sketch, SketchProps, SketchSettings } from "dileep";

const sketch = ({ wrap, width, height }: SketchProps) => {
  //  setup/init
  const numShapes = 40;
  const colors = [`#aaa`, `blue`, `white`, `black`, `lightpink`];
  const lines = new Array(numShapes).fill({}).map(() => ({
    x: Math.random() * width,
    y: 0,
    w: (Math.random() * width) / 10 + width / 40,
    h: height,
  }));

  wrap.render = ({ context: ctx, playhead }: SketchProps) => {
    // animation loop
    ctx.fillStyle = `lightblue`;
    ctx.fillRect(0, 0, width, height);

    lines.forEach((line, i) => {
      const cycle = Math.sin(i + playhead * Math.PI * 2);
      ctx.beginPath();
      ctx.rect(line.x + (cycle * width) / 8, line.y, line.w, line.h);
      ctx.fillStyle = colors[i % colors.length];
      ctx.fill();
    });
  };

  wrap.resize = ({ width, height }: SketchProps) => {
    // resize
    console.log(width, height);
  };
};

// sketch settings
const settings: SketchSettings = {
  mode: "2d",
  dimensions: [320, 320],
  pixelRatio: 1,
  duration: 3_000,
  playFps: 12,
  exportFps: 12,
  frameFormat: "png",
  framesFormat: "gif",
};

dileep(sketch as Sketch, settings);

The code above can create and export the gif:

example gif animation

License

MIT