Socket
Socket
Sign inDemoInstall

angie-log

Package Overview
Dependencies
226
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.9.11 to 0.9.12

4

CHANGELOG.md

@@ -5,2 +5,6 @@ # Change Log

#### [0.9.12] - 2015-09-30
##### Changed
- Modified README
#### [0.9.11] - 2015-09-02

@@ -7,0 +11,0 @@ ##### Removed

4

package.json
{
"name": "angie-log",
"version": "0.9.11",
"version": "0.9.12",
"author": "Joe Groseclose <@benderTheCrime>",
"description": "Standalone terminal and outfile logger designed for the Angie MVC",
"description": "An extremely lightweight logging utility for NodeJS built in ES6",
"license": "MIT",

@@ -7,0 +7,0 @@ "bin": {

@@ -0,13 +1,21 @@

![emblem](https://rawgit.com/angie-framework/angie-log/master/svg/angie.svg "emblem")
## Angie Log
An extremely lightweight logging utility for NodeJS built in ES6
This is a very slim terminal and outfile logger for iojs/NodeJS ES6 projects. It will work standalone, or as an extension to the [Angie MVC](https://github.com/benderTheCrime/angie).
![build status](https://travis-ci.org/benderTheCrime/angie-log.svg?branch=master "build status")
[![npm version](https://badge.fury.io/js/angie-log.svg)](http://badge.fury.io/js/angie-log "npm version")
![iojs support](https://img.shields.io/badge/iojs-1.7.1+-brightgreen.svg "iojs support")
![node support](https://img.shields.io/badge/node-0.12.0+-brightgreen.svg "node support")
![code coverage](https://rawgit.com/benderTheCrime/angie-log/master/svg/coverage.svg "code coverage")
![npm downloads](https://img.shields.io/npm/dm/angie-log.svg "npm downloads")
![build status](https://travis-ci.org/benderTheCrime/angie-log.svg?branch=master "build status")
![code coverage](https://rawgit.com/angie-framework/angie-log/master/svg/coverage.svg "code coverage")
[![documentation](https://doc.esdoc.org/github.com/angie-framework/angie-log/badge.svg)](https://doc.esdoc.org/github.com/angie-framework/angie-log/ "documentation")
[![NPM](https://nodei.co/npm/angie-log.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/angie-log/)
### About
Angie Log is designed as an extremely lightweight logging utility for NodeJS which will:
* Prettify the terminal output using the [Chalk](https://www.npmjs.com/package/chalk "Chalk") package
* Provide utilities for printing useful and informative terminal output
* Create asynchronously written, non-blocking log files to maintain said useful and informative output based on well-defined JS log levels

@@ -62,11 +70,5 @@ ### Usage

### About
Angie Log is designed as an extremely lightweight logging utility for NodeJS which will:
* Prettify the terminal output using the [Chalk](https://www.npmjs.com/package/chalk "Chalk") package
* Provide utilities for printing useful and informative terminal output
* Create asynchronously written, non-blocking log files to maintain said useful and informative output based on well-defined JS log levels
For a list of Frequently Asked Questions, please see the [FAQ](https://github.com/benderTheCrime/angie-log/blob/master/FAQ.md "FAQ") and the [CHANGELOG](https://github.com/benderTheCrime/angie-log/blob/master/CHANGELOG.md "CHANGELOG") for an up to date list of changes. Contributors to this Project are outlined in the [CONTRIBUTORS](https://github.com/benderTheCrime/angie-log/blob/master/CONTRIBUTORS.md "CONTRIBUTORS") file.
### Angie
Please see the [site](http://benderthecrime.github.io/angie/) for news, a quickstart guide, and documentation and the [CHANGELOG](https://github.com/benderTheCrime/angie/blob/master/CHANGELOG.md) for an up to date list of changes.
Please see the [site](http://benderthecrime.github.io/angie/) for information about the project, a quickstart guide, and documentation and the [CHANGELOG](https://github.com/benderTheCrime/angie/blob/master/CHANGELOG.md) for an up to date list of changes.

@@ -15,11 +15,9 @@ // System Modules

describe('$LogProvider', function() {
const noop = () => undefined;
const noop = () => false;
describe('constructor', function() {
let observeMock;
beforeEach(function() {
observeMock = mock(Object, 'observe', noop);
mock(Object, 'observe', noop);
});
afterEach(() => simple.restore());
afterEach(simple.restore);
it('test contructor object arguments', function() {

@@ -26,0 +24,0 @@ let logger = new Log({

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc