
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@seagull/seed
Advanced tools
Library implementing seed data generation for test cases.
Use global switch to enable seed data generation:
import { config } from '@seagull/seed'
config.seed = true
...
// do your thing
...
config.seed = false
The seed data can be fetched in any mode except pure, as tests within the code pipeline should not call external ressources.
In case you want to modify the seed creation for a specific case, you can create a specific SeedLocalConfig by creating a TypeScript-file within the seed folder structure:
import { LocalConfig } from '@seagull/seed'
export default <LocalConfig<SomeResponse>>{
hook: (fixture: SomeResponse) => {
// do something, e.g. slice some arrays within the fixture
return fixture
},
expiresInDays: 14, // fixture will be re-fetched after 14 days
}
A configuration file is applied for all subsequent fixtures.
FAQs
Seed implementation for the seagull framework
We found that @seagull/seed demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.