
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
aprilabank
Advanced tools
Aprila Kit provides front-end developers & engineers a collection of reusable HTML and CSS partials to build websites and user interfaces. Adopting the library enables developers to use consistent markup, styles, and behavior in prototype and production work.
📚 Aprila Kit documentation is available here
npm install
npm start
clone this repo
npm install # to install dependencies
npm start # start local development server
We use Storybook to document the design system.
Stories are made using a file format called MDX, and is used to write rich documentation for the components. You will find all the documentation files under the folder /stories
.
select
and option
. Read more about best practises hereAll right, you need to change or add something. What do you do?
1: If the thing you're changing or adding is specific to your project, and not all sites using Aprila Kit, use a separate css file to add or override functionality using your own classes and components.
2: If you're adding new functionality to Aprila Kit, follow the development guide below.
3: If you've found a bug, follow the below "Found a bug?" guide below.
To develop on the project, please first read our guidelines and the contributing section above.
To add a new feature:
git checkout -b branchname
)development
branch and ask for a reviewTo modify an existing feature follow the same process, but also remember the versioning system. If there is a breaking change, or if this might impact existing sites using Aprila Kit, update the version number. See below for details.
Aprila Kit uses semantic versioning to make sure once a site starts using it, the CSS or Web Components won't suddenly change and break the site. The version number is located in package.json
When a breaking change is added, a new major version is required.
The development
branch works as our beta
branch, so we can try out new features before we roll them out into production.
To publish a beta version:
development
0.6.10-beta.9
to 0.6.10-beta.10
npm publish --tag beta
master
is used as our production branch, so when publishing a new version, make sure you have tested all the new features, and taken into account breaking changes etc.
To publish to production:
master
0.6.9
to 0.6.10
depending on the types of changesnpm publish
The documentation is hosted on Netlify. Each time code is pushed to the master
branch, a new build of the documentation will be deployed. Netlify also creates a unique build per pull request so it's easy for other people to review and see the changes live.
Aprila Kit is published on NPM and can be installed simply by running npm install --save aprilabank
. If you want to use a CDN, we reccommend that you use JSDeliver.
src/assets/icons/
foldernpm run build:package:svg
to generate SVG sprite.The CSS components should work down to at least IE11. You can make Web Components work down to IE11 with polyfills, but we have not tested Aprila Kit with this in mind. If the application you are building needs to support IE11 we recommend that you only use the CSS components, and implement the dynamic parts yourself. If you don't need IE11 support, go for the Web Components as they are way easier to use, and also update at a later point.
├── /.storybook - Storybook config files
├── /build - Folder that contains the bundled files
│ ├── /assets - Fonts, icons, logo assets
│ ├── /components - Individual components for indiviual imports
│ ├── base.css - Base styles like font declarations and variables
│ ├── icons.js - Javascript snippet that loads the sprite on your page,
│ ├── main.css – Main CSS bundle with all components
│ ├── main.js - Main Web Component bundle with all components
│ └── sprite.svg - Svg sprite with all icons
├── /src
│ ├── /assets - All assets like icons, fonts, logos
│ ├── /components - Component files (CSS, and JS)
│ ├── /styles - Global CSS
│ ├── /utils - Helper functions
│
├── /stories - Documentation files for Storybook
We try to have as few dependencies as possible in Aprila Kit. This makes it easier to maintain in the long run, and it makes it more secure as we are not using some unkown third party code in our projects.
FAQs
Unknown package
The npm package aprilabank receives a total of 2 weekly downloads. As such, aprilabank popularity was classified as not popular.
We found that aprilabank demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.