
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@alauda/ui
Advanced tools
Internal Angular UI framework for Alauda Frontend Team.
# npm
npm i @alauda/ui
# yarn
yarn add @alauda/ui
and also need to confirm the peer dependencies have been installed
yarn add dayjs @angular/cdk
// tsconfig.json
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
...
},
...
}
import { ButtonModule } from '@alauda/ui';
@NgModule({
imports: [ButtonModule],
})
export class AppModule {}
git clone https://github.com/alauda/alauda-ui.git
cd alauda-ui
yarn install
yarn start
yarn test
or
yarn test:watch
yarn storybook:build
yarn build
Develop and debug UI component libraries quickly and efficiently by incremental builds
yarn build:watch
Also can copy a dist to another project to debug
yarn build:watch <project_path>
In this way, after every incremental build completed, dist will be copied to node_modules which in specified project
In order to incremental build dist to your project directly instead of adding parameter to specify project path every time, can use your own ng-package.json by
npm run debug
Edit you own build config by adding a new file called ng-package.debug.json, like
// ng-package.debug.json
{
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"dest": "/home/alauda/projects/<target_project_path>/node_modules/@alauda/ui",
"lib": {
"entryFile": "./src/index.ts"
}
}
9.1.0
#586 f255c12 Thanks @yangxiaolang! - feat: remove medium form width and modify tag styles
#589 9d0a9f5 Thanks @yangxiaolang! - chore: revert tag style modify
FAQs
Angular UI components by Alauda Frontend Team.
We found that @alauda/ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 11 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
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.