0.7.19 • Published 9 days ago

@wp-playground/client v0.7.19

Weekly downloads
-
License
GPL-2.0-or-later
Repository
github
Last release
9 days ago

Playground Client

Provides a PlaygroundClient that can be used to control a WordPress Playground iframe:

import { startPlaygroundWeb } from '@wp-playground/client';

const client = await startPlaygroundWeb({
	// An iframe pointing to https://playground.wordpress.net/remote.html:
	iframe: document.getElementById('wp'),
	remoteUrl: `https://playground.wordpress.net/remote.html`,
});

const response = await client.run({
	// wp-load.php is only required if you want to interact with WordPress.
	code: '<?php require_once "/wordpress/wp-load.php"; $posts = get_posts(); echo "Post Title: " . $posts[0]->post_title;',
});
console.log(response.text);

Using TypeScript is highly recommended as this package ships with comprehensive types – hit ctrl+space in your IDE after client. and you'll see all the available methods.

Once you have a PlaygroundClient instance, you can use it to control the playground:

await client.writeFile('/index.php', '<?php echo "Hi!"; ');
await client.run({
	scriptPath: '/index.php',
});

console.log(await client.readFileAsText('/index.php'));

await client.request({
	url: '/index.php',
	method: 'POST',
	body: {
		foo: 'bar',
	},
});

To see all the available methods, check out the PlaygroundClient interface.

0.7.4

9 days ago

0.7.10

9 days ago

0.7.9

9 days ago

0.7.6

9 days ago

0.7.5

9 days ago

0.7.8

9 days ago

0.7.7

9 days ago

0.7.19

9 days ago

0.7.18

9 days ago

0.7.15

9 days ago

0.7.14

9 days ago

0.7.17

9 days ago

0.7.16

9 days ago

0.7.3

10 days ago

0.7.1

15 days ago

0.7.0

15 days ago

0.6.16

22 days ago

0.6.15

23 days ago

0.6.14

28 days ago

0.6.13

29 days ago

0.6.10

1 month ago

0.6.9

1 month ago

0.6.8

2 months ago

0.6.7

2 months ago

0.6.6

2 months ago

0.6.5

2 months ago

0.6.4

2 months ago

0.6.3

3 months ago

0.6.2

3 months ago

0.6.1

3 months ago

0.6.0

3 months ago

0.5.6

4 months ago

0.5.5

4 months ago

0.5.4

4 months ago

0.5.3

4 months ago

0.5.2

5 months ago

0.5.1

5 months ago

0.3.0

7 months ago

0.3.1

7 months ago

0.1.56

11 months ago

0.1.58

11 months ago

0.1.59

11 months ago

0.1.51

12 months ago

0.1.49

12 months ago

0.1.45

12 months ago

0.1.46

12 months ago

0.1.60

11 months ago

0.1.61

11 months ago

0.1.40

12 months ago

0.2.0

11 months ago

0.1.39

12 months ago

0.1.38

1 year ago

0.1.37

1 year ago

0.1.35

1 year ago

0.1.34

1 year ago

0.1.33

1 year ago

0.1.32

1 year ago

0.1.30

1 year ago

0.1.29

1 year ago

0.1.28

1 year ago

0.1.26

1 year ago

0.1.25

1 year ago

0.1.23

1 year ago

0.1.22

1 year ago

0.1.19

1 year ago

0.1.18

1 year ago

0.1.17

1 year ago

0.1.10

1 year ago

0.1.9

1 year ago

0.1.8

1 year ago

0.1.7

1 year ago

0.1.6

1 year ago

0.1.4

1 year ago

0.1.3

1 year ago

0.0.1

1 year ago