2.1.1 • Published 5 months ago

@ovh-ux/ng-tail-logs v2.1.1

Weekly downloads
8
License
BSD-3-Clause
Repository
github
Last release
5 months ago

ng-tail-logs

AngularJS tail logs module.

npm version Downloads Dependencies Dev Dependencies

Poll a log API for displaying messages

Install

$ yarn add @ovh-ux/ng-tail-logs

Usage

import angular from 'angular';
import ngTailLogs from '@ovh-ux/ng-tail-logs';

angular.module('myApp', [ngTailLogs]).controller(
  'MyCtrl',
  /* @ngInject */ ($q, TailLogs) => {
    this.logger = new TailLogs({
      source: () => $q.when('http://my-log-url'),
      delay: 2000,
    });
  },
);
<div data-ng-controller="MyCtrl as $ctrl">
    <tail-logs>
        <div data-ng-repeat="log in $ctrl.logger.logs track by $index"
             data-ng-bind="log.message">
        </div>
    </tail-logs>
</div>

Test

$ yarn test

Contributing

Always feel free to help out! Whether it's filing bugs and feature requests or working on some of the open issues, our contributing guide will help get you started.

License

BSD-3-Clause © OVH SAS

2.1.1

5 months ago

2.0.10

8 months ago

2.1.0

6 months ago

2.0.9

1 year ago

2.0.8

1 year ago

2.0.7

2 years ago

2.0.6

3 years ago

2.0.5

3 years ago

2.0.4

3 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago

2.0.0

5 years ago

2.0.0-beta.1

5 years ago

2.0.0-beta.0

5 years ago