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/vite-dev-server
Advanced tools
Implements the APIs for the object-syntax of the Cypress Component-testing "vite dev server".
Object syntax:
import { defineConfig } from 'cypress'
export default defineConfig({
component: {
devServer: {
framework: 'create-react-app',
bundler: 'vite',
// viteConfig?: Will try to infer, if passed it will be used as is
}
}
})
Function syntax:
import { devServer } from '@cypress/vite-dev-server'
import { defineConfig } from 'cypress'
export default defineConfig({
component: {
devServer(cypressConfig) {
return devServer({
cypressConfig,
framework: 'react',
viteConfig: require('./vite.config.js')
})
}
}
})
There should be a single publicly-exported entrypoint for the module, devServer
, all other types and functions should be considered internal/implementation details, and types stripped from the output.
The devServer
will first source the modules from the user's project, falling back to our own bundled versions of libraries. This ensures that the user has installed the current modules, and throws an error if the user does not have the library installed.
From there, we check the "framework" field to source or define any known vite transforms to aid in the compilation.
We then merge the sourced config with the user's vite config, and layer on our own transforms, and provide this to a vite instance. The vite instance used to create a vite-dev-server, which is returned.
FAQs
Launches Vite Dev Server for Component Testing
The npm package @cypress/vite-dev-server receives a total of 33,292 weekly downloads. As such, @cypress/vite-dev-server popularity was classified as popular.
We found that @cypress/vite-dev-server demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.