Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/neogeek/lumberlogs

📝 A simple log aggregation tool.
https://github.com/neogeek/lumberlogs

logger logging unity

Last synced: 4 months ago
JSON representation

📝 A simple log aggregation tool.

Awesome Lists containing this project

README

        

# LumberLogs

> 📝 A simple log aggregation tool.

[![](https://img.shields.io/badge/Trello-Board-blue.svg)](https://trello.com/b/BIqhJuLP/lumberlogs)

## Install

Download the latest from

## Usage

### Bash

```bash
$ curl -H "content-type:text/plain" -d "Hello, world." http://localhost:1234/log
```

```bash
$ curl -H "content-type:application/json" -d "{\"message\":\"Hello, world.\"}" http://localhost:1234/log
```

### JavaScript

```javascript
fetch('http://localhost:1234/log', {
method: 'POST',
body: 'Hello, world.'
});
```

```javascript
fetch('http://localhost:1234/log', {
method: 'POST',
body: JSON.stringify({ message: 'Hello, world.' }),
headers: {
'Content-Type': 'application/json'
}
});
```

### Unity

Install package via UPM

## Build

Install required packages via node.

```bash
$ npm install
```

Test the application.

```bash
$ npm start
```

Build the application.

```bash
$ npm run build
```