https://github.com/codevideo/codevideo-exporters
Generates various markdown, PDF, or HTML tutorials for professional quality educational tutorials, walkthroughs, and blog posts.
https://github.com/codevideo/codevideo-exporters
Last synced: about 1 year ago
JSON representation
Generates various markdown, PDF, or HTML tutorials for professional quality educational tutorials, walkthroughs, and blog posts.
- Host: GitHub
- URL: https://github.com/codevideo/codevideo-exporters
- Owner: codevideo
- Created: 2025-02-21T22:25:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-09T18:12:56.000Z (over 1 year ago)
- Last Synced: 2025-04-05T03:32:58.720Z (about 1 year ago)
- Language: TypeScript
- Size: 959 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# @fullstackcraftllc/codevideo-exporters

`codevideo-exporters` includes a series of browser-compatible TypeScript functions that can export a step by step software course into markdown, pdf, or html. This library is part of the [CodeVideo](https://codevideo.io) project.
This library heavily relies on the types from [@fullstackcraftllc/codevideo-types](https://github.com/codevideo/codevideo-types)
## Installation
```shell
npm install @fullstackcraftllc/codevideo-exporters
```
Install peer dependencies:
```shell
npm install highlight.js marked marked-highlight jszip html-to-png react-dom/server.browser
```
These dependencies are required for:
- `marked`: Markdown parsing
- `marked-highlight`: Markdown code block highlighting
- `highlight.js`: Code syntax highlighting (used with `marked-highlight`)
- `jszip`: For making .zip exports of files, also for the pngs .zip export
- `html-to-image`: For png exports
- `pptxgenjs`: For pptx exports
## Usage
Generate markdown from just an array of `IAction`s:
```typescript
import { generateMarkdownFromActions } from '@fullstackcraftllc/codevideo-exporters';
import { IAction } from '@fullstackcraftllc/codevideo-types';
const actions: Array = [
{
"name": "author-speak-before",
"value": "To showcase how codevideo works, we're just going to do a super basic hello world example here in src."
},
{
"name": "editor-type",
"value": "console.log('Hello World!');"
},
{
"name": "author-speak-before",
"value": "Nice, that looks pretty good! Pretty cool tool, right?!"
}
]
const markdown = generateMarkdownFromActions(actions);
console.log(markdown);
// Output:
// To showcase how codevideo works, we're just going to do a super basic hello world example here in src.
//
// ```javascript
// console.log('Hello World!');
// ```
//
// Nice, that looks pretty good! Pretty cool tool, right?!
```
Generate markdown from an `ILesson`:
```typescript
import { generateMarkdownFromLesson } from '@fullstackcraft/codevideo-exporters';
import { ILesson } from '@fullstackcraft/codevideo-types';
const lesson: ILesson = {
"title": "Hello World",
"description": "In this lesson, we're going to do a simple hello world example.",
"actions": [
{
"name": "author-speak-before",
"value": "To showcase how codevideo works, we're just going to do a super basic hello world example here in src."
},
{
"name": "editor-type",
"value": "console.log('Hello World!');"
},
{
"name": "author-speak-before",
"value": "Nice, that looks pretty good! Pretty cool tool, right?!"
}
]
}
const markdown = generateMarkdownFromLesson(lesson);
console.log(markdown);
// Output:
// # Hello World
//
// In this lesson, we're going to do a simple hello world example.
//
// To showcase how codevideo works, we're just going to do a super basic hello world example here in src.
//
// ```javascript
// console.log('Hello World!');
// ```
//
// Nice, that looks pretty good! Pretty cool tool, right?!
```
Generate markdown from an `ICourse`, which includes one or more `ILesson`s:
```typescript
import { generateMarkdownFromCourse } from '@fullstackcraft/codevideo-exporters';
import { ICourse } from '@fullstackcraft/codevideo-types';
const course: ICourse = {
"title": "Hello World Course",
"description": "This course has just one lesson, which is building a hello world example.",
"lessons": [
{
"title": "Hello World",
"description": "In this lesson, we're going to do a simple hello world example.",
"actions": [
{
"name": "author-speak-before",
"value": "To showcase how codevideo works, we're just going to do a super basic hello world example here in src."
},
{
"name": "editor-type",
"value": "console.log('Hello World!');"
},
{
"name": "author-speak-before",
"value": "Nice, that looks pretty good! Pretty cool tool, right?!"
}
]
}
]
}
const markdown = generateMarkdownFromCourse(course);
console.log(markdown);
// Output:
// # Hello World Course
//
// This course has just one lesson, which is building a hello world example.
//
// ## Hello World
//
// In this lesson, we're going to do a simple hello world example.
//
// To showcase how codevideo works, we're just going to do a super basic hello world example here in src.
//
// ```javascript
// console.log('Hello World!');
// ```
//
// Nice, that looks pretty good! Pretty cool tool, right?!
```
## Why?
Imagine you've defined all your steps of an awesome software course in a JSON file. You want to render this JSON file into a video, as a markdown blog post, or a sellable PDF. This is exactly what the CodeVideo library does. It takes in a JSON file and renders it into a video, markdown, or PDF.
See more at [codevideo.io](https://codevideo.io)