An open API service indexing awesome lists of open source software.

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

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
```

[![Open in StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/github/withastro/astro/tree/latest/examples/minimal)
[![Open with CodeSandbox](https://assets.codesandbox.io/github/button-edit-lime.svg)](https://codesandbox.io/p/sandbox/github/withastro/astro/tree/latest/examples/minimal)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](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).