Security News
CISA Brings KEV Data to GitHub
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
(fresh in Basque)
A configurable cli that keeps your project deps fresh
Have you ever pulled someone else's code into your local environment, only to realize later that your code doesn't work anymore?
Was it because that person added a new Node.js dependency, a new migration, or anything else that needs to be "loaded" through some command?
With fresko
, this will not happen - ever. 😀
Automatically react to changes in your repository, each time you're pulling new code, and never forget to run any critical command.
// npm
npm install -D fresko
// yarn
yarn add -D fresko
// pnpm
pnpm add -D fresko
Create fresko.config.ts
at project root
import { declareConfiguration } from 'fresko'
export default declareConfiguration({
prompts: [
// Will remind you to install updated node deps
{
path: 'yarn.lock',
command: 'yarn install',
},
// Will remind you to run updated database fixtures
{
path: [
'src/migration'
'src/fixtures'
],
command: 'yarn loadFixtures'
}
]
})
Add git hook on post-merge
event (optional, recommended)
npx husky add .husky/post-merge "exec < /dev/tty && npx fresko || true"
Why
exec < /dev/tty
? By default, git hooks are not interactive. This command allows the user to use their terminal to interact with Fresko during the hook.
MIT License © 2022 Quentin Hello
FAQs
A configurable cli that keeps your project deps fresh
We found that fresko demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.