Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
cypress-ct-custom-devserver
Advanced tools
A helper to simplify the api for creating a custom dev-server for cypress.
A helper for setting up Cypress devServers for component testing.
This library offers a framework to abstract some of the difficulties regarding setting up a custom Cypress dev-server for component testing. Namely this library will setup an express server for delivering your bundled code and provide you with a clean api for setting up your build tools. You will have to take care of setting up the build process for the provided entry points and map the tests to their respective bundles.
Add the library to your devDependencies
npm install -D cypress-ct-custom-devserver
In your cypress config or in a seperate file setup the devServer as follows:
const devServer = createCustomDevServer(async ({ cypressConfig, onBuildComplete, onBuildStart, specs, supportFile, serveStatic }) => {
// first you need to start your prefered build tool in watch mode
let onClose = await startBuild({
watchMode: cypressConfig.watchForFileChanges,
entryPoints: [...specs.map((spec) => spec.absolute), supportFile && supportFile.absolute],
onBuildComplete, // this needs to be called whenever the build is complete so cypress can restart the test.
onBuildStart // if this callback is provided the api will wait until the build is finished before it serves the bundles.
})
// if you use code splitting or want to reference assets, you should setup
// static serving for your output folder and any other folder you want accessible from the test
serveStatic('./output-folder')
// you can also specify a custom path prefix
serveStatic('./images', '/custom/image')
return {
// This callback is triggered when Cypress requests the bundle for a test.
// The spec-parameter contains information about which test the bundle is requested for.
// You can use the loadBundle function to import js files. The files need to be made available via serve static.
// The path you provide should match the url the file has on the server. The sequence of imports will be preserved.
// You can also inject html into the head or body using the injectHTML function. This can be used to inject i.e. styles.
// This should be used sparingly though, as cypress makes html-snapshots after each command. Too large index.html files
// will slow down your tests.
loadTest: async (spec, { loadBundle, injectHTML }) => {
// if you want to load the support bundle you need to do it before the test-bundle
if (supportFile) {
loadBundle(supportFile.relative)
}
// The path on the spec-object will have the original file extension. If the extension changed
// during bundling you might have to adapt the path accordingly. You need to provide the
// relative path to the file as you serve it via serveStatic.
const testPath = spec.relative.replace(spec?.fileExtension, '.js')
loadBundle(testPath)
// per default html is injected at the end of the head element
injectHTML('<style>body {background: red}</style>')
// but you can also specify whether to use head or body. The html will be appended at the end of the element.
injectHTML('<div class="portal"></div>', 'body')
},
// this callback will be called every time new tests are added or removed
// you can use it to update your build-tool
onSpecChange: async (newSpecs) => {
await onClose()
onClose = await startBuildInWatchMode({
entryPoints: [...newSpecs.map((spec) => spec.absolute), supportFile && supportFile.absolute],
onBuildComplete,
onBuildStart
})
},
// you can provide a custom port for the dev-server to use. default is 0, which means pick a random port
devServerPort: 0,
// you can provide a callback to gracefully shut down your dev server once cypress shuts down.
onClose: () => onClose(),
// you can provide a logging function, lowest loglevel is 6
logFunction: (logLevel, ...messages) => logLevel > 4 && console.log(...messages)
}
})
const config = defineConfig({
component: {
devServer
}
})
FAQs
A helper to simplify the api for creating a custom dev-server for cypress.
We found that cypress-ct-custom-devserver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.