Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
A React ecosystem library for building back-office platforms like DD360.
It's library created by developers for developers
npm install dd360-ds
or
yarn add dd360-ds
If you want to use a provider to configure the library's theme, you can do so using the ThemeProvider provided by dd360-ds. This will allow you to set your own settings for the theme.
To use the ThemeProvider, you must import it as follows:
import { createTheme, ThemeProvider } from "dd360-ds/theme";
You can then create your own theme configuration using the createTheme function, which accepts an object with different properties to customize the theme. For example, you can define the primary and secondary colors as shown below:
const theme = createTheme({
palette: {
primary: {
main: "purple"
},
secondary: {
main: "#FFC107"
}
}
});
After creating your theme configuration, you can use the ThemeProvider to wrap your React app. This can be done as follows:
ReactDOM.createRoot(document.getElementById("root")).render(
<StrictMode>
<ThemeProvider theme={theme}>
<App />
</ThemeProvider>
</StrictMode>
);
Within the ThemeProvider, you can use the components provided by dd360-ds and the corresponding styles will be applied based on your theme settings.
Remember that to use the ThemeProvider, you must import both the createTheme component and the ThemeProvider component from dd360-ds/theme.
After Installation, you will have to make some extra configurations for everything to work normally.
Import stylesheets into the App.js
or App.tsx
import 'dd360-ds/dd360.css'
⚠️ Warning: If you want to combine it with other styles, be sure to import our css as the last one.
How to import components?
import { Button } from 'dd360-ds'
This is the most fun part. Below we will explain the use of the components we are currently developing.
You can checking and contribute to the docs website here
FAQs
DD360 Components is a tailwind based React component library
The npm package dd360-ds receives a total of 333 weekly downloads. As such, dd360-ds popularity was classified as not popular.
We found that dd360-ds demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.