Installation
Here you will find everything you need to get started with Kitchn. From installation to learning and contributing, we have you covered.
Frameworks
Kitchn is designed to work with any framework. However, we have created a few guides to help you get started with Kitchn and your favorite framework.
Basic Installation
Kitchn is available as a npm package (opens in a new tab).
npm i kitchn --save
After installing Kitchn, you need to set up the KitchnProvider
at the root of your applications.
This can be either in your index.jsx
, index.tsx
or App.jsx
depending on the framework you use.
import { KitchnProvider } from "kitchn";
export default function App({ Component, pageProps }) {
return (
<KitchnProvider>
<TheRestOfYourApplication />
</KitchnProvider>
);
}
Learn
Watch our official courses and dive deeper into videos that will teach you everything you need to know about Kitchn, from the basics to advanced topics.
- Kitchn for Beginners (opens in a new tab) (coming soon)
- Kitchn for Advanced Users (opens in a new tab) (coming soon)
- Playground (coming soon)
Contribute
Whether you're a beginner or advanced user, we welcome you to contribute to Kitchn. We have a contributing guide that will help you get started.