Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/damingerdai/ngx-dom-confetti
Celebrate success with dom confetti on angular projects!
https://github.com/damingerdai/ngx-dom-confetti
angular dom-confetti
Last synced: 2 months ago
JSON representation
Celebrate success with dom confetti on angular projects!
- Host: GitHub
- URL: https://github.com/damingerdai/ngx-dom-confetti
- Owner: damingerdai
- License: mit
- Created: 2022-11-09T05:35:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-02T10:33:59.000Z (2 months ago)
- Last Synced: 2024-12-05T16:11:52.697Z (2 months ago)
- Topics: angular, dom-confetti
- Language: TypeScript
- Homepage: https://ngx-dom-confetti.vercel.app/
- Size: 2.17 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-angular - ngx-dom-confetti - Celebrate success with dom confetti on Angular projects! (Table of contents / Third Party Components)
- fucking-awesome-angular - ngx-dom-confetti - Celebrate success with dom confetti on Angular projects! (Table of contents / Third Party Components)
README
# Ngx Dom Confetti
[Dom Confetti](https://www.npmjs.com/package/dom-confetti) for Angular
# Install
for npm user
```bash
npm install ngx-dom-confetti
```for yarn user
```bash
yarn add ngx-dom-confetti
```for pnpm user
```bash
pnpm install ngx-dom-confetti
```# Use
import `NgxDomConfettiModule` to `AppModule`
```ts
import { NgxDomConfettiModule} from 'ngx-dom-confetti';@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,NgxDomConfettiModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
```use `ngx-dom-confetti`
```html
Hit Me!
```
# license
[MIT](https://github.com/damingerdai/ngx-dom-confetti/blob/master/LICENSE)