Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
aether-marketing
Advanced tools
## How to add Components to the Aether-marketing Component library
npm install
/src
folderMyComponent.test.js
at the same level as you component and add a unit test. We use Jest. You can check the other components for example of how we add unit tests.npm run test
to check that all tests passnpm run lint
to make sure that your new componente passes ESLintsrc/index
file and export your new componentnpm run build
to create a /lib
folder that contains the packaged components.npm pack
to generate a .tgz file at the root directorynpm install path_to_tgz_file
import {MyCoolButton} from 'aether-marketing'
function App() {
return (
<div>
<MyCoolButton title="Click Me!"/>
<div>
)
}
export default App;
npm run test
to get a report on unit testing.npm run test-coverage
to create a code coverage report in your browser window.change the version of the package in the package.json file according to semantic versioning - patch, minor or major run
npm login
npm publish
npm install @postman/aether-marketing
import {Theme} from 'aether-marketing';
const HomePageWrapper = styled.div`
background-color: ${props => props.theme.colors.blue_70};
height: calc(100vh - 55px);
background-position: top right;
background-image: url("/brand-guide-home.svg");
background-size: 75%;
background-repeat: no-repeat;
@media (min-width: 600px) {
background-size: 50%;
}
`;
FAQs
React Component Library
The npm package aether-marketing receives a total of 360 weekly downloads. As such, aether-marketing popularity was classified as not popular.
We found that aether-marketing 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
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.