f42336cf83
This PR moves the puppeteer source code into separate mono-repo packages: - `puppeteer` and `puppeteer-core` are now separated into their own packages. - `puppeteer-core` has a new exports called `puppeteer-core/internal` for internal usage. Tests and various tools have been updated to accommodate the migration. |
||
---|---|---|
.. | ||
src | ||
cert.pem | ||
key.pem | ||
LICENSE | ||
package.json | ||
README.md | ||
tsconfig.json |
TestServer
This test server is used internally by Puppeteer to test Puppeteer itself.
Example
const {TestServer} = require('@pptr/testserver');
(async(() => {
const httpServer = await TestServer.create(__dirname, 8000),
const httpsServer = await TestServer.createHTTPS(__dirname, 8001)
httpServer.setRoute('/hello', (req, res) => {
res.end('Hello, world!');
});
console.log('HTTP and HTTPS servers are running!');
})();