# videojs.com **Repository Path**: mirrors_videojs/videojs.com ## Basic Information - **Project Name**: videojs.com - **Description**: The Video.js Website - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-07-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Videojs.com This is the repo for the videojs.com website, including our blog. It uses the [Gatsby framework](https://gatsbyjs.org), so if you have questions about how things like the static rendering work, their documentation is a great place to start ## Blog Blog posts are written using [mdx](https://mdxjs.com/), a flavor of Markdown that allows you to include React components. Writing a new blog post is done by adding a new `.mdx` file in [src/mdx-pages/blog](src/mdx-pages/blog) with the correct metadata at the top. Moving forward, consider naming the file starting with the date to make organization a little easier long term. ```markdown --- title: This is an awesome post tags: - news - stats author: name: Matt McClure github: mmcc alias: - post/wow-neat-what-a-post date: 2040-01-01 00:00:00 --- Wow this is a really great post. Such thought leadership. ``` ## Running it locally Check out the repo locally, then npm install and off you go! ``` $ git clone https://github.com/videojs/videojs.com $ cd videojs.com $ npm install $ npm run develop ``` If all went according to plan, you should now be able to visit the website at http://localhost:8000