@trackr/core

A library to create music with, by defining tracks, with notes, filters, effects, waves, ...

Usage no npm install needed!

<script type="module">
  import trackrCore from 'https://cdn.skypack.dev/@trackr/core';
</script>

README

Trackr Core

This package provides the core functionality of the trackr core music api.

Play a simple sequence:

ts``` // define steps let steps = [new TrackrStep(noteFrequency('C3'), 1, oscillator({type: 'sawtooth'})), ... ];

sequencer(steps);