https://github.com/djangify/creative-coding
Creative Coding and Generative Art Projects
https://github.com/djangify/creative-coding
Last synced: 18 days ago
JSON representation
Creative Coding and Generative Art Projects
- Host: GitHub
- URL: https://github.com/djangify/creative-coding
- Owner: djangify
- Created: 2025-07-09T13:35:20.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-10-07T13:00:52.000Z (10 months ago)
- Last Synced: 2026-07-03T03:35:08.464Z (18 days ago)
- Language: Astro
- Size: 99.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Creative Coding β¨
A collection of small, interactive web experiments built with **Astro** β exploring calm design, motion, and creativity through code.
Each project is lightweight, self-contained, and designed to encourage curiosity or reflection rather than competition or distraction.
---
## π¨ Overview
This site brings together a series of **creative coding sketches**, each one exploring how simple shapes, motion, and interaction can influence mood.
Some projects are playful; others are quiet or meditative. All are built for the browser using minimal dependencies, primarily **p5.js** and **vanilla JavaScript**.
Itβs part of an ongoing exploration into what I call *mindful code* β creating interactive pieces that help people pause, breathe, and feel more connected while waiting, learning, or simply passing time.
---
## π§ Built With
- [Astro](https://astro.build) β fast static site builder for modern web projects
- [p5.js](https://p5js.org) β creative coding library for generative art and motion
- HTML, CSS, and a touch of JavaScript
- Optional: Tailwind CSS or custom utilities for layout and typography (depending on version)
---
## πΉ Featured Projects
| Project | Description |
|----------|--------------|
| **Mindful Circles** | Gentle motion-based sketch where floating circles attract and repel β built to explore calm and focus through physics and motion. |
| **Animal Catcher** | A cheerful tap game for toddlers that uses emojis as simple, responsive βanimalsβ to catch. Perfect for waiting rooms. |
| **Tap to Calm** | A single-file mindful tool. Tap drifting orbs to release light and move through calm βbreath levels.β Built entirely within one HTML file using p5.js. |
Each project is available as a standalone demo or embedded within the Astro site.
---
## π§© Project Structure
```bash
/
βββ public/ # Static assets and site icons
βββ src/
β βββ components/ # Layout and UI components
β βββ layouts/ # Shared page templates
β βββ pages/ # Individual project pages (Astro files)
β βββ sketches/ # Contained creative-coding projects
βββ package.json
βββ astro.config.mjs
βββ README.md
π§ Vision
Creative coding is where art and logic meet. This project exists as a digital playground β a place to explore ideas that might not fit neatly into βappsβ or βtools,β but still invite interaction, mindfulness, or curiosity.
Future updates will expand this into a living collection of sketches and micro-games that can be embedded or reimagined as teaching tools.
π License
This project is open source under the MIT License
.
Made by Diane Corriette
[Django Developer](https://todiane.com)
Built with Astro. Inspired by calm, play, and the beauty of small experiments.
# Astro Starter Kit: Minimal
```sh
npm create astro@latest -- --template minimal
```
[](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)
[](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal)
[](https://codespaces.new/withastro/astro?devcontainer_path=.devcontainer/minimal/devcontainer.json)
> π§βπ **Seasoned astronaut?** Delete this file. Have fun!
## π Project Structure
Inside of your Astro project, you'll see the following folders and files:
```text
/
βββ public/
βββ src/
β βββ pages/
β βββ index.astro
βββ package.json
```
Astro looks for `.astro` or `.md` files in the `src/pages/` directory. Each page is exposed as a route based on its file name.
There's nothing special about `src/components/`, but that's where we like to put any Astro/React/Vue/Svelte/Preact components.
Any static assets, like images, can be placed in the `public/` directory.
## π§ Commands
All commands are run from the root of the project, from a terminal:
| Command | Action |
| :------------------------ | :----------------------------------------------- |
| `npm install` | Installs dependencies |
| `npm run dev` | Starts local dev server at `localhost:4321` |
| `npm run build` | Build your production site to `./dist/` |
| `npm run preview` | Preview your build locally, before deploying |
| `npm run astro ...` | Run CLI commands like `astro add`, `astro check` |
| `npm run astro -- --help` | Get help using the Astro CLI |
## π Want to learn more?
Feel free to check [our documentation](https://docs.astro.build) or jump into our [Discord server](https://astro.build/chat).