
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.
shared-uicomponents-library
Advanced tools
To the full list of UI components available on this library, please run storybook npm run storybook.
In src/utils we have two files for useful functions, dateUtils and numberUtils. All the functions and their documentation are inside the files.
In src/consts and src/models you can find many files containing constants, types and enums that are relevant to the different projects.
To add a new component, you will need to follow these steps:
components folder.index.ts inside the component folder to export the component as default: export { default as GeneralButton } from "./Button".index.ts that is under components folder for the component you want to export: export * from "./Button".In order to publish a new version of the library to NPM, you will need to follow these steps:
npm run build in order to generate a new dist folder.package.json the version number to a new one (that doesn't exists in NPM).npm publish and a new version will be uploaded to NPM. You will have to be logged in into a NPM account, if you are not logged in, run npm login before you run the publish script.FAQs
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.