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.
- Language: TypeScript
- Framework: Next.js
- Styling: Tailwind CSS
- Linting: ESLint
- Code Formatting: Prettier
- Deployment: GitHub Pages (w/ GitHub Actions)
To start development, we should install our packages first.
pnpm installAfter the installation is completed, we can run the app by:
pnpm devand it will start on http://localhost:3000/code-image-generator.
To create a production build, we need to run the below command first:
pnpm buildAfter this step, we can run the app in production mode by:
pnpm start