2.0.1 • Published 3 years ago

yy-fps v2.0.1

Weekly downloads
37
License
MIT
Repository
github
Last release
3 years ago

yy-fps

A vanilla, easy-to-use FPS meter with colored graph and no dependencies or separate CSS files

Features

  • vanilla javascript written in typescript
  • simple one call per loop
  • no dependencies
  • no CSS files required (styles can be changed by passing a style object)
  • placement in any corner
  • restyle any part
  • toggle the meter on or off

New v2

  • rewrote entire codebase in typescript with same functionality as v1
  • improved demo
  • improved packaging

Installation

npm i yy-fps

or

copy the dist/fps.min.js file to your app, and include it:
<script src="fps.min.js"></script>

Simple Example

import { FPS } from 'yy-fps'
const fps = new FPS()

// or if including the file directly:
// const fps = FPS.FPS()

// update function
function update() {
    // do stuff like rendering and dancing

    fps.frame()

    requestAnimationFrame(update)
}

update()

Live Example

https://davidfig.github.io/fps/

Documentation

https://davidfig.github.io/fps/jsdoc

License

MIT License (c) 2021 YOPEY YOPEY LLC by David Figatner

2.0.1

3 years ago

2.0.0

4 years ago

1.1.0

6 years ago

1.0.0

7 years ago

0.6.0

7 years ago

0.5.3

8 years ago

0.5.2

8 years ago

0.5.1

8 years ago

0.5.0

8 years ago

0.4.1

8 years ago

0.4.0

8 years ago

0.3.2

8 years ago

0.3.1

8 years ago

0.3.0

8 years ago

0.2.0

8 years ago

0.1.0

8 years ago