https://github.com/chroxify/tinyqrc
A dead-simple, free service for creating QR codes—both manually and programmatically.
https://github.com/chroxify/tinyqrc
Last synced: 6 months ago
JSON representation
A dead-simple, free service for creating QR codes—both manually and programmatically.
- Host: GitHub
- URL: https://github.com/chroxify/tinyqrc
- Owner: chroxify
- License: mit
- Created: 2025-02-20T15:13:39.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-05T22:17:41.000Z (12 months ago)
- Last Synced: 2025-05-08T23:54:18.228Z (11 months ago)
- Language: TypeScript
- Homepage: https://tinyqrc.com
- Size: 2.32 MB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://tinyqrc.com)
## Introduction
TinyQRC is a lightweight and simple QR code generation library and API. Generate beautiful QR codes quickly and easily, whether through the web interface, API, or npm package.
## Features
- **Fast & Lightweight** - No dependencies, maximum performance
- **Multiple Integration Options** - Web interface, REST API, or npm package
- **Customization** - Control colors, size, and error correction levels
- **Developer-First** - Simple, intuitive, and fast API
## Quick Start
### Package
```ts
import { generateSVG } from "tinyqrc";
// Generate a QR code
const svg = await generateSVG({
value: "https://example.com",
size: 256,
});
```
### REST API
```bash
curl -X GET "https://api.tinyqrc.com/v1/qr\
?data=https://example.com\
&size=256"
```
[View API Documentation →](https://go.tinyqrc.com/docs)
### Web Interface
Generate QR codes instantly at [tinyqrc.com](https://tinyqrc.com).
## Credits
Code Gen is based on [nayuki/QR-Code-generator](https://github.com/nayuki/QR-Code-generator) with modifications.
## License
MIT License.