
Security News
Node.js TSC Votes to Stop Distributing Corepack
Corepack will be phased out from future Node.js releases following a TSC vote.
@edx/cookie-policy-banner
Advanced tools
The edX cookie policy banner component implemented in React.
edX cookie policy banner React component
npm i --save @edx/cookie-policy-banner
import CookiePolicyBanner from '@edx/cookie-policy-banner';
// Can import sass file this way
// Or as an import in one of your sass files with other third party sass files
import '@edx/cookie-policy-banner/build/cookie-policy-banner.scss';
const SomeWrappingComponent = () => (
<div>
<span>Blahblablah</span>
<CookiePolicyBanner />
</div>
);
As noted in a comment in the previous code example, you can import the styles associated with the CookiePolicyBanner
component directly (if this is supported by your webpack
config) or by importing the sass file as part of one of your existing sass files (probably where your other third-party sass files are imported).
// base.scss
@import 'thirdPartySass';
@import 'anotherThirdPartySass';
@import '@edx/cookie-policy-banner/build/cookie-policy-banner';
Storybook
is a useful tool for showcasing the expected and potential usage of components.
Executing
npm run start
locally builds the Storybook for the CookiePolicyBanner
component on port 3003
.
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
Corepack will be phased out from future Node.js releases following a TSC vote.
Research
Security News
Research uncovers Black Basta's plans to exploit package registries for ransomware delivery alongside evidence of similar attacks already targeting open source ecosystems.
Security News
Oxlint's beta release introduces 500+ built-in linting rules while delivering twice the speed of previous versions, with future support planned for custom plugins and improved IDE integration.