https://github.com/bohdanmoroziuk/code-to-image
Take screenshots of your code
https://github.com/bohdanmoroziuk/code-to-image
code-screenshot composition-api nuxt-ui nuxt3 tailwindcss typescript vue3
Last synced: about 2 months ago
JSON representation
Take screenshots of your code
- Host: GitHub
- URL: https://github.com/bohdanmoroziuk/code-to-image
- Owner: bohdanmoroziuk
- License: mit
- Created: 2024-04-15T14:31:09.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-20T14:22:13.000Z (about 2 years ago)
- Last Synced: 2024-04-20T15:58:06.317Z (about 2 years ago)
- Topics: code-screenshot, composition-api, nuxt-ui, nuxt3, tailwindcss, typescript, vue3
- Language: Vue
- Homepage: https://code-to-image-seven.vercel.app/
- Size: 255 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodeToImage
> Take screenshots of your code
## Setup
Make sure to install the dependencies:
```bash
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun install
```
## Development Server
Start the development server on `http://localhost:3000`:
```bash
# npm
npm run dev
# pnpm
pnpm run dev
# yarn
yarn dev
# bun
bun run dev
```
## Production
Build the application for production:
```bash
# npm
npm run build
# pnpm
pnpm run build
# yarn
yarn build
# bun
bun run build
```
Locally preview production build:
```bash
# npm
npm run preview
# pnpm
pnpm run preview
# yarn
yarn preview
# bun
bun run preview
```
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.