Quick Start
Getting Started with Content Collections.
Introduction
Content Collections transforms your content into type-safe data collections, providing useful utilities for data fetching and parsing.
Installation
Content Collection supports most major web frameworks. You can install it automatically (currently experimental) or manually.
Automatic Installation (experimental)
Automatic installation is experimental and may not work for every project. Please ensure you have committed your latest changes before running the installation.
If you encounter any issues, create a ticket and use the manual installation.
Content collections can be installed automatically using the content-collections
package.
The automatic installation currently supports the following frameworks:
- Next.js
- Remix
- Qwik
- SvelteKit
- SolidStart
- Vite
To install Content Collections automatically, run the following command in your project's directory:
The setup will guide you through the installation process and execute the necessary steps to configure Content Collections for your project.
Manual Installation
Choose the one you are using to get started.
CLI
Setup guide for the Content Collections CLI
Next.js
Integrate Content Collections into your Next.js app
Qwik
Use Content Collections with Qwik
Remix (Vite)
Content Collections integration for Remix (Vite)
SolidStart
Use Content Collections with SolidStart
SvelteKit
Integrate Content Collections into your SvelteKit app
Vite
Setup guide for the Content Collections Vite plugin
If your framework is not listed, you can still use Content Collections by using the CLI. Please open a ticket if you want to see your framework listed.
How it works?
Content Collections works by generating an array of documents for each collection you define. Each document is a TypeScript object that represents a file in your project.
The documents are generated from the files in the collection directory, all files must match the specified glob pattern.
How to use it?
To use the generated documents in your project, you can import the generated files. Type information is available as TypeScript definitions.
Refer to the installation guide for more information on how to set up the Content Collections for your framework.
What is a Collection?
Once you have configured an import alias, you can import the generated files in your project with:
The allPosts
object is a collection, it contains an array of documents that you can use in your project.
Each document has the shape defined in the collection configuration.
You can access the properties of the document as you would with any other TypeScript object.
Here is an example of how you can use the allPosts
object in your project:
Each document has a _meta
property (unless it has been removed in the transform
function) that contains metadata about the document, such as the file path and the file name.