Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@axelor/ui
Advanced tools
React components by Axelor.
# Nodejs
$ curl -fsSL https://deb.nodesource.com/setup_lts.x | bash -
$ sudo apt-get install -y nodejs
# Alternatively, `nvm` can be used as a Node Version Manager
$ curl https://raw.githubusercontent.com/creationix/nvm/master/install.sh | bash
$ source ~/.profile
$ nvm install 20
# pnpm
$ corepack enable
$ corepack prepare pnpm@latest-9 --activate
Install the library :
$ pnpm add @axelor/ui
You can import from the main bundle:
import { Button } from '@axelor/ui';
Only core
components are available from the main bundle.
For others components (grid
, kanban
, gantt
, ...), you have to import the component directly :
import Grid from '@axelor/ui/grid';
import Kanban from '@axelor/ui/kanban';
Before any command, install dependencies running following command:
$ pnpm install
Run following commands to build storybook :
$ pnpm build-storybook
This build Storybook as a static web application capable of being served by any web server.
Default build files are located under storybook-static/*
To run storybook locally :
$ pnpm storybook
the storybook will be served on http://localhost:6006
Run following command to build components :
$ pnpm build
components are generated under dist/
.
FAQs
React components by Axelor.
The npm package @axelor/ui receives a total of 131 weekly downloads. As such, @axelor/ui popularity was classified as not popular.
We found that @axelor/ui 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.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.