mint
Version, currently 0.12.051 versions
- 0.29.0latestJun 17, 2026
- 0.28.1not indexedAug 4, 2026
- 0.28.0not indexedAug 4, 2026
- 0.27.0not indexedAug 4, 2026
- 0.26.0not indexedAug 4, 2026
- 0.25.0not indexedAug 4, 2026
- 0.24.1not indexedAug 4, 2026
- 0.24.0not indexedAug 4, 2026
- 0.23.2not indexedAug 4, 2026
- 0.23.1not indexedAug 4, 2026
- 0.23.0not indexedAug 4, 2026
- 0.22.0not indexedAug 4, 2026
- 0.21.0not indexedAug 4, 2026
- 0.20.1not indexedAug 4, 2026
- 0.20.0not indexedAug 4, 2026
- 0.20.0-rc.1not indexedAug 4, 2026
- 0.20.0-alpha.3not indexedAug 4, 2026
- 0.20.0-alpha.2not indexedAug 4, 2026
- 0.20.0-alpha.1not indexedAug 4, 2026
- 0.19.0not indexedAug 4, 2026
- 0.18.0not indexedAug 4, 2026
- 0.17.0not indexedAug 4, 2026
- 0.16.1not indexedAug 4, 2026
- 0.16.0not indexedAug 4, 2026
- 0.15.3not indexedAug 4, 2026
- 0.15.2not indexedAug 4, 2026
- 0.15.1not indexedAug 4, 2026
- 0.15.0not indexedAug 4, 2026
- 0.14.0not indexedAug 4, 2026
- 0.13.1not indexedAug 4, 2026
- 0.13.0not indexedAug 4, 2026
- 0.12.0not indexedAug 4, 2026
- 0.11.0not indexedAug 4, 2026
- 0.10.0not indexedAug 4, 2026
- 0.9.0not indexedAug 4, 2026
- 0.8.0not indexedAug 4, 2026
- 0.7.1not indexedAug 4, 2026
- 0.7.0not indexedAug 4, 2026
- 0.6.0not indexedAug 4, 2026
- 0.5.0not indexedAug 4, 2026
- 0.4.0not indexedAug 4, 2026
- 0.3.1not indexedAug 4, 2026
- 0.3.0not indexedAug 4, 2026
- 0.2.1not indexedAug 4, 2026
- 0.2.0not indexedAug 4, 2026
- 0.1.0not indexedAug 4, 2026
- 0.0.4not indexedAug 4, 2026
- 0.0.3not indexedAug 4, 2026
- 0.0.2not indexedAug 4, 2026
- 0.0.1not indexedAug 4, 2026
- 0.0.0not indexedAug 4, 2026
github.com/mint-lang/mint
🍃 A refreshing programming language for the front-end web.
4262 stars
0 dependents
License: BSD-3-Clause
Nothing has been indexed for 0.12.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.
Installation
# Add this to your shard.yml
dependencies:
mint:
github: mint-lang/mint
version: ~> 0.12.0Then run:
shards installshard.yml
No shard.yml has been indexed for 0.12.0. You can read it on the repository.
Dependencies
Unknown: the shard.yml for this version has not been read yet.
README
This README is the one indexed from the repository at its latest ref, not from the tag for this version.
<p align="center">
<img src="documentation/Brand/logo.svg" style="width:250px;"/>
</p>
<h4 align="center">A refreshing programming language for the front-end web.</h4>
<div align="center">
[](https://github.com/mint-lang/mint/actions/workflows/ci.yml)
[](https://discord.gg/NXFUJs2)


</div>
<div align="center">
[Install](https://mint-lang.com/install) •
[Reference](https://mint-lang.com/reference/) •
[API Docs](https://mint-lang.com/api) •
[Project Status](#-project-status) •
[Community](#-community) •
[Contributing](#-contributing)
</div>
```mint
component Counter {
state counter = 0
fun increment { next { counter: counter + 1 } }
fun decrement { next { counter: counter - 1 } }
fun render {
<div>
<button onClick={decrement}>"Decrement"</button>
<span>counter</span>
<button onClick={increment}>"Increment"</button>
</div>
}
}
```
## 📔 Project Status
The project is in development, converging on 1.0. The syntax and and standard library are mostly stable.
At this point we are polishing the language and refactoring for more stability.
Here are some bigger projects built and maintained by us that showcases the language:
- [Mint Website](https://github.com/mint-lang/mint-website) - The website for the language. It has static content (documentation, blogs) and application like content (sandboxes).
- [Mint Realworld](https://github.com/mint-lang/mint-realworld) - The frontend implementation of the Realworld app.
- [Mint UI](https://github.com/mint-lang/mint-ui) - A UI library written in Mint.
- [Mint UI Website](https://github.com/mint-lang/mint-ui-website) - The website for Mint UI.
- _Your Project_ - let us know if you've written something amazing with Mint and would like to showcase here!
## 👥 Community
Questions or suggestions? Ask on [Discord](https://discord.gg/KvKr5UZKhY). Also, visit
[Awesome Mint](https://github.com/egajda/awesome-mint), to see more guides, tutorials
and examples.
## 👷 Contributing
Read the general [Contributing guide](https://github.com/mint-lang/mint/blob/master/CONTRIBUTING.md).
### Ways you can contribute
- **use the language** - this is the most helpful thing at this stage because we can discover bugs and missing features this way
- **documentation and website** - the documentation always needs some work, if you discover that something is not documented or can be improved you can create a PR for it in the [website repository](https://github.com/mint-lang/mint-website)
- **code review** - the compiler can always use a thorough code review, also code reviews for PRs are welcome
- **standard library** - the standard library can always use some contributions:
- create modules for not yet implemented Web APIs (or a separate package)
- a lot of modules like `String`, `Dom`, etc... are missing some features, you can add new functions here (with tests)
- **write a package** - if you have a feature you use and can be moved into a package it can be good for other developers
- **marketing** - write blog posts and such to help others become aware of the language
- **compiler** - there are a few issues that could be fixed and features that can be implemented in the compiler
### ℹ️ Questions, Proposals?
Let's discuss in the [Github Discussions](https://github.com/mint-lang/mint/discussions), otherwise please create at [new issue](https://github.com/mint-lang/mint/issues/new)
Documentation
Built from the current release. The first visit to a release nobody has asked for starts its build.
Links
This release
- Version
0.12.0- Tagged
- Aug 4, 2026
- Commit
b511b64226a3- Indexed
- not yet
Dependents
No indexed shard depends on this one yet.
Repository
github.com/mint-lang/mint
Metadata
- Created
- Aug 12, 2026
- Updated
- Aug 12, 2026
- Synced
- Aug 12, 2026
- Versions
- 51