GithubHelp home page GithubHelp logo

Module not found about angular2-notifications HOT 4 CLOSED

flauc avatar flauc commented on June 2, 2024
Module not found

from angular2-notifications.

Comments (4)

flauc avatar flauc commented on June 2, 2024 2

I've managed to make it work with webpack. It was actually quit simple. All i did was clone this repo:

Angular2-webpack-starter

Installed the library
npm install angular2-notifications

And modified:

home.ts

import {Component, OnInit} from 'angular2/core';
import {FORM_DIRECTIVES} from 'angular2/common';
import {SimpleNotificationsComponent, NotificationsService} from 'angular2-notifications/components'

@Component({
  selector: 'home',
  directives: [SimpleNotificationsComponent],
  pipes: [],
  styles: [require('./home.scss')],
  template: require('./home.html')
})
export class Home implements OnInit {
  constructor(private _service: NotificationsService) {}
  public options = {
    timeOut: 5000,
    lastOnBottom: true
  };

  create() {
    this._service.success('bla', 'example')
  }
}

bootstrap.ts

...
import {NotificationsService} from 'angular2-notifications/components'
...
  return bootstrap(App, [
    ...
    NotificationsService,
    ...
});

And home.html

<simple-notifications [options]="options"></simple-notifications>
<button (click)="create()"></button>

It's all working but the css is a little broken. There might be some overlaps.

from angular2-notifications.

flauc avatar flauc commented on June 2, 2024

To be honest i'we only ever used system.js with my angular2 applications. But i'll have a look and let you know.

from angular2-notifications.

sergio11 avatar sergio11 commented on June 2, 2024

thanks for response.

I will follow you suggestion with Angular2-webpack-starter.

greetings

from angular2-notifications.

flauc avatar flauc commented on June 2, 2024

np.. glad i could help.

from angular2-notifications.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.