https://github.com/onderonur/code-image-generator
Create your code images by choosing different themes and visual settings.
https://github.com/onderonur/code-image-generator
code-image codemirror gh-pages nextjs tailwindcss typescript
Last synced: 2 months ago
JSON representation
Create your code images by choosing different themes and visual settings.
- Host: GitHub
- URL: https://github.com/onderonur/code-image-generator
- Owner: onderonur
- License: gpl-3.0
- Created: 2023-01-16T19:03:19.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-12-14T20:49:55.000Z (over 1 year ago)
- Last Synced: 2024-12-14T21:30:15.563Z (over 1 year ago)
- Topics: code-image, codemirror, gh-pages, nextjs, tailwindcss, typescript
- Language: TypeScript
- Homepage: https://onderonur.github.io/code-image-generator/
- Size: 713 KB
- Stars: 3
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Image Generator
Create your code images by choosing different themes and visual settings.
Images can be copied to the clipboard or downloaded as image files to be shared on social media etc.
**Live demo is [here](https://onderonur.github.io/code-image-generator/).**
## 💻 Tech Stack
- Language: [TypeScript](https://www.typescriptlang.org/)
- Framework: [Next.js](https://nextjs.org/)
- Styling: [Tailwind CSS](https://tailwindcss.com/)
- Linting: [ESLint](https://eslint.org/)
- Code Formatting: [Prettier](https://prettier.io/)
- Deployment: [GitHub Pages](https://pages.github.com/) (w/ [GitHub Actions](https://github.com/features/actions))
## ⌨️ Development
To start development, we should install our packages first.
```bash
pnpm install
```
After the installation is completed, we can run the app by:
```bash
pnpm dev
```
and it will start on `http://localhost:3000/code-image-generator`.
## 🚀 Build
To create a production build, we need to run the below command first:
```bash
pnpm build
```
After this step, we can run the app in `production` mode by:
```bash
pnpm start
```