npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

synth-javascript

v1.2.11

Published

A browser-based audio programming language for music composition and audio synthesis.

Downloads

15

Readme

Introduction

SynthJS is an interpreter and toolset for the Synth Web Audio Programming Language. Its core JavaScript parsing engine leverages the capabilities of the Web Audio API, allowing SynthJS to distill complex compositions, effects, and instruments into JSON-structured sequences.

Related applications

  • Kebo is a React synthesizer based on SynthJS.
  • SynthJS-Editor is a real-time SPA for writing and debugging Synth compositions.

Usage

Install:

npm install synth-javascript

Every instance of SynthJS handles a single instrument/voice. Pass each instance a voice configuration:

import SynthJS from 'synth-javascript'

const composition = new SynthJS({  
  tempo: 128,                // default is 60
  instrument: 'square',      // default is 'sine'
  timeSig: '3/4',            // default is '4/4'
  loop: true                 // default is false  
})

Write and play:

composition.update({notes: `
  t d4, t d_4,
  t d4, q a#5,
  q b5, q rest
`})

composition.play()

Note: Up to six audio contexts (voices) can be active on the window object. Each instance of SynthJS creates a new context.

Note duration

A note's duration is the amount of time it is played relative to the tempo, known as a subdivision. Common subdivisions are abbreviated as follows:

  • z = zero (useful for slides where the end note is not held)
  • ts = thirty-second
  • s = sixteenth
  • s. = dotted-sixteenth
  • t = triplet
  • e = eighth
  • e. = dotted-eighth
  • q = quarter
  • q. = dotted-quarter
  • h = half
  • h. = dotted-half
  • w = whole
  • w. = dotted-whole
  • i = indefinite (1,000 whole notes)

Note: 3 triplets = 2 eighths

Note names

A note's name is mapped to its frequency in hertz. D in the 5th octave is written as d5. Similarly, G-flat in the 3rd octave is g_3, and C-sharp in the 6th octave is c#6. A note may be between a0 and g#7, inclusive.

Basic notation

General format

h d5, q g_3, q c#6 [duration][space][note][comma]

Note: Any amount of tabs, newlines, or whitespace can appear after the comma, but one space must appear between the duration and pitch.

Repetition

To simplify the writing process, groups of notes may be assigned to variable names. Notice the use of colons and semicolons in this example:

motif: h d5, q g_3, q c#6;

t d4, motif,
t a4, motif

Repeated notes may be multiplied by an integer value.

h c4 * 8, t b_3 * 3

Chords

Use the + operator to play notes simultaneously. A chord is constituted of its pitches played for a specified duration.

chord: h d3 + a3 + g3;

h d3, chord,
h a3, chord

Slides

A note may be gradually altered over time until it reaches a new pitch. This is achieved with the - operator.

slide: h e2 - e c3;

e f3, slide,
h b3, slide

To chain slides, use the z duration for the destination note:

h e2 - z c3, h c3 - z f4, e f4 - z d3

This ensures that the entire duration of the slide is dictated by the duration of the source note.

Advanced features

Effects

Dynamics like gain, reverb, detuning, instrument, and distortion can be easily altered in a composition using the '@' tag.

@reverb 2/1.1/0.7,
@gain 75,
@instrument square,
h g3, w a5,

@instrument sine,
h g3, w a4

In the above example, the instrument is set to square and later changed to sine. Reverb and gain are set for the entire piece.

Reverb

@reverb accepts 3 optional parameters delimited with '/': channel #, reverb length as a function of the sample rate, and decay rate.

Gain

@gain accepts 1 parameter: the amount of gain from 0 (mute) to 100 (maximum volume).

Detune

@detune accepts 1 parameter: the value in cents to detune a frequency.

Instrument

@instrument accepts 1 parameter: the instrument name.