-
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add screencast package * perf: avoid unnecessary actions * docs: add screencast section
- Loading branch information
Showing
18 changed files
with
426 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,4 +46,4 @@ | |
"timeout": "30s", | ||
"workerThreads": false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<div align="center"> | ||
<br> | ||
<img style="width: 500px; margin:3rem 0 1.5rem;" src="https://github.com/microlinkhq/browserless/raw/master/static/logo-banner.png#gh-light-mode-only" alt="browserless"> | ||
<img style="width: 500px; margin:3rem 0 1.5rem;" src="https://github.com/microlinkhq/browserless/raw/master/static/logo-banner-light.png#gh-dark-mode-only" alt="browserless"> | ||
<br> | ||
<br> | ||
<p align="center"><strong>@browserless/lighthouse</strong>: Browserless Lighthouse integration using puppeteer.</p> | ||
<p align="center">See <a href="https://browserless.js.org/#%2F%3Fid=lighthouse" target='_blank' rel='noopener noreferrer'>lighthouse</a> section our <a href="https://browserless.js.org" target='_blank' rel='noopener noreferrer'>website</a> for more information.</p> | ||
<br> | ||
</div> | ||
|
||
## Install | ||
|
||
Using npm: | ||
|
||
```sh | ||
npm install @browserless/screencast --save | ||
``` | ||
|
||
## Usage | ||
|
||
See [browseress#screencast](https://browserless.js.org/#/?id=screencast). | ||
|
||
## License | ||
|
||
**@browserless/lighthouse** © [Microlink](https://microlink.io), released under the [MIT](https://github.com/microlinkhq/browserless/blob/master/LICENSE.md) License.<br> | ||
Authored and maintained by [Microlink](https://microlink.io) with help from [contributors](https://github.com/microlinkhq/browserless/contributors). | ||
|
||
The [logo](https://thenounproject.com/term/browser/288309/) has been designed by [xinh studio](https://xinh.studio). | ||
|
||
> [microlink.io](https://microlink.io) · GitHub [microlinkhq](https://github.com/microlinkhq) · Twitter [@microlinkhq](https://twitter.com/microlinkhq) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
{ | ||
"name": "@browserless/screencast", | ||
"description": "Browserless video recording using puppeteer.", | ||
"homepage": "https://browserless.js.org/#/?id=screencasturl-options", | ||
"version": "9.11.0", | ||
"main": "src/index.js", | ||
"author": { | ||
"email": "hello@microlink.io", | ||
"name": "microlink.io", | ||
"url": "https://microlink.io" | ||
}, | ||
"repository": { | ||
"directory": "packages/screencast", | ||
"type": "git", | ||
"url": "git+https://github.com/microlinkhq/browserless.git#master" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/microlinkhq/browserless/issues" | ||
}, | ||
"keywords": [ | ||
"browser", | ||
"browserless", | ||
"chrome", | ||
"chromeless", | ||
"core", | ||
"headless", | ||
"media", | ||
"mediarecorder", | ||
"puppeteer", | ||
"recorder", | ||
"recording", | ||
"screencast", | ||
"video" | ||
], | ||
"dependencies": { | ||
"data-uri-to-buffer": "~5.0.1" | ||
}, | ||
"devDependencies": { | ||
"@browserless/test": "^9.11.0", | ||
"ava": "latest" | ||
}, | ||
"engines": { | ||
"node": ">= 12" | ||
}, | ||
"files": [ | ||
"scripts", | ||
"src" | ||
], | ||
"scripts": { | ||
"coverage": "exit 0", | ||
"test": "ava" | ||
}, | ||
"license": "MIT", | ||
"ava": { | ||
"timeout": "30s", | ||
"workerThreads": false | ||
} | ||
} |
Oops, something went wrong.