https://github.com/remotion-dev/template-skia
A Remotion starter template with React Native Skia included
https://github.com/remotion-dev/template-skia
Last synced: 3 months ago
JSON representation
A Remotion starter template with React Native Skia included
- Host: GitHub
- URL: https://github.com/remotion-dev/template-skia
- Owner: remotion-dev
- Created: 2022-07-08T19:07:50.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2025-07-24T09:52:00.000Z (11 months ago)
- Last Synced: 2025-08-10T01:21:34.410Z (10 months ago)
- Language: TypeScript
- Homepage: https://template-skia.vercel.app
- Size: 385 KB
- Stars: 19
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Remotion video
Welcome to your Remotion project!
## Commands
**Install Dependencies**
```console
npm install
```
**Start Preview**
```console
npm run dev
```
**Render video**
```console
npx remotion render
```
**Upgrade Remotion**
```console
npx remotion upgrade
```
## Using server-side rendering
This template uses a [custom Webpack override](https://www.remotion.dev/docs/webpack). If you are using server-side rendering, you need to import `enableSkia` from `@remotion/skia/enable` and pass it to [`bundle()`](https://www.remotion.dev/docs/bundle) (if using SSR) and [`deploySite()`](https://www.remotion.dev/docs/lambda/deploysite) (if using Lambda):
```ts
bundle(entry, () => undefined, {
webpackOverride: (config) => enableSkia(config),
});
// or
deploySite({
webpackOverride: (config) => enableSkia(config),
});
```
## Docs
Get started with Remotion by reading the [fundamentals page](https://www.remotion.dev/docs/the-fundamentals).
## Help
We provide help [on our Discord server](https://discord.gg/6VzzNDwUwV).
## Issues
Found an issue with Remotion? [File an issue here](https://github.com/remotion-dev/remotion/issues/new).
## License
Note that for some entities a company license is needed. Read [the terms here](https://github.com/remotion-dev/remotion/blob/main/LICENSE.md).