This commit is contained in:
Philipp Kühn 2020-04-20 20:48:34 +02:00
parent 9d97e7ed18
commit 08de0d3072
2 changed files with 6 additions and 4 deletions

View File

@ -1,14 +1,16 @@
# Installation # Installation
tiptap has a very modular package structure and is independent of any framework. If you want to start as fast as possible, you need at least the two packages `@tiptap/core` and `@tiptap/starter-kit`.
```bash ```bash
# Using npm # Using npm
npm install @tiptap/core npm install @tiptap/core @tiptap/starter-kit
# Using Yarn # Using Yarn
yarn add @tiptap/core yarn add @tiptap/core @tiptap/starter-kit
``` ```
## Quick Start You can use it like this:
```js ```js
import { Editor } from '@tiptap/core' import { Editor } from '@tiptap/core'

View File

@ -15,7 +15,7 @@ Although tiptap tries to hide most of the complexity of ProseMirror, its is b
## Contributing ## Contributing
Please see the [`CONTRIBUTING`](https://github.com/scrumpy/tiptap/blob/master/CONTRIBUTING.md) file for details. Please see the [`CONTRIBUTING.md`](https://github.com/scrumpy/tiptap/blob/master/CONTRIBUTING.md) file for details.
```bash ```bash
yarn install yarn install