playjs-core 0.6.4 → 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +15 -3
- package/dist/index.es.js +105239 -99422
- package/dist/index.umd.js +163 -136
- package/package.json +11 -13
package/README.md
CHANGED
|
@@ -2,13 +2,25 @@ Add a JavaScript Playground on your project.
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install react react-dom playjs-core
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
yarn add react react-dom playjs-core
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pnpm install react react-dom playjs-core
|
|
7
17
|
```
|
|
8
18
|
|
|
9
19
|
## Basic usage
|
|
10
20
|
|
|
11
|
-
```
|
|
21
|
+
```tsx
|
|
22
|
+
import { PlayJS } from 'playjs-core';
|
|
23
|
+
|
|
12
24
|
<PlayJS />
|
|
13
25
|
```
|
|
14
26
|
|