zhaohuanyuu / p5-vite-kit

p5js multi page showcase scaffolding based on vite

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

p5-vite-kit

multi page mode and framework starter kit tool base on vite.

Quick Start

$ npx degit zhaohuanyuu/p5-vite-kit#main my-p5-app

$ cd my-p5-app

$ npm install
$ npm start

usage

Add custom pages in the pages directory to dynamically generate multiple entries.

The multi-page configuration refers to vite-plugin-mpa

src/pages
  |- start
    |- index.html
    |- main.js
  |- so on...

The writing of p5 in esmodule refers to p5-wrapper the p5-wrapper is located at src/common/p5Wrapper

import { sketch } from "@addons/p5Wrapper";

sketch.setup = function () {
	createCanvas(800, 600);
};

sketch.draw = function () {
	background(100);
	fill(255, 0, 0);
	noStroke();
	rectMode(CENTER);
	rect(mouseX, mouseY, 50, 50);
};

sketch.mousePressed = function () {
	console.log('here');
};

It is then accessible in the local server. Example: localhost:3000 will show the multiple page list named as their folder name, click href to or manually typed in browser.

p5-vite-kit

Bundle

After bundling, the pages in the corresponding pages directory will be promoted to the dist first-level directory, and you can use the preview command to preview it.

$ npm run build
$ npm run preview
dist
 |- assets
   |- corresponding js
   |- corresponding image...
   |- etc
 |- start
   |- index.html

License

This project is open source and available under the MIT License.

About

p5js multi page showcase scaffolding based on vite

License:MIT License


Languages

Language:TypeScript 60.1%Language:JavaScript 19.4%Language:HTML 12.5%Language:CSS 7.9%