Skip to content

Commit

Permalink
deps, dates, CI
Browse files Browse the repository at this point in the history
  • Loading branch information
75lb committed Sep 17, 2024
1 parent 06c2267 commit 744c6e3
Show file tree
Hide file tree
Showing 9 changed files with 156 additions and 442 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [12, 14, 16, 18, 20, 22]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm install
- run: npm i -g @75lb/nature
- run: npm run test
2 changes: 0 additions & 2 deletions .gitignore

This file was deleted.

5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-19 Lloyd Brookes <75pound@gmail.com>
Copyright (c) 2015-25 Lloyd Brookes <75pound@gmail.com>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[![view on npm](http://img.shields.io/npm/v/stream-log-stats.svg)](https://www.npmjs.org/package/stream-log-stats)
[![npm module downloads](http://img.shields.io/npm/dt/stream-log-stats.svg)](https://www.npmjs.org/package/stream-log-stats)
[![Dependency Status](https://badgen.net/david/dep/75lb/stream-log-stats)](https://david-dm.org/75lb/stream-log-stats)
[![view on npm](https://badgen.net/npm/v/stream-log-stats)](https://www.npmjs.org/package/stream-log-stats)
[![npm module downloads](https://badgen.net/npm/dt/stream-log-stats)](https://www.npmjs.org/package/stream-log-stats)
[![Gihub repo dependents](https://badgen.net/github/dependents-repo/lwsjs/stream-log-stats)](https://github.com/lwsjs/stream-log-stats/network/dependents?dependent_type=REPOSITORY)
[![Gihub package dependents](https://badgen.net/github/dependents-pkg/lwsjs/stream-log-stats)](https://github.com/lwsjs/stream-log-stats/network/dependents?dependent_type=PACKAGE)
[![Node.js CI](https://github.com/lwsjs/stream-log-stats/actions/workflows/node.js.yml/badge.svg)](https://github.com/lwsjs/stream-log-stats/actions/workflows/node.js.yml)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg)](https://github.com/feross/standard)

# stream-log-stats
Expand Down Expand Up @@ -77,4 +79,4 @@ Resource Requests Transferred

* * *

&copy; 2015-19 Lloyd Brookes \<75pound@gmail.com\>.
&copy; 2015-25 Lloyd Brookes \<75pound@gmail.com\>.
1 change: 1 addition & 0 deletions bin/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
const statsView = require('../')

process.stdin.pipe(statsView({ refreshRate: 100 }))

Loading

0 comments on commit 744c6e3

Please sign in to comment.