Une collection organisée de snippets de code pour accélérer votre développement. Parcourez, recherchez et copiez en un clic.
"scripts": {
"preinstall": "echo 'Avant l installation'",
"install": "node install-script.js",
"postinstall": "echo 'Après l installation'"
}
"scripts": {
"start": "node index.js",
"test": "jest"
}
npx create-react-app mon-app
npm run test
npm run test -- --watch
yarn dlx create-react-app mon-app
yarn test