Socket
Socket
Sign inDemoInstall

modularscale-js

Package Overview
Dependencies
0
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

modularscale-js

A modular scale calculator written in JavaScript


Version published
Maintainers
1
Weekly downloads
449
Install size
8.66 kB

Weekly downloads

Readme

Source

Modularscale

This is a JavaScript modular scale calculator so you can create and use modular scales in your project. This calculator was built in tandem with the new modularscale.com website both as its calculation engine and as an external tool you can use in your own projects.

Installation

You can install modularscale-js as an NPM or Bower package to include in your project.

NPM:

$ npm install modularscale-js

Bower:

$ bower install modularscale-js

Alternatively you can download the latest release and add it to your project.

Using modularscale-js

First, you will want to set up your scale. You can go to modularscale.com and click on the js tab to generate a config, or define it yourself.

There is a configuration object that contains the settings for modular scale, inside it is an array of bases and the ratio value.

Call the function with either msFunction(n) or ms(n) where n is the point on your scale. You can pass settings in as a second variable.

$modularscale: {
  base: [1],
  ratio: 1.5
};

You can add multiple bases by adding values to the array

$modularscale: {
  base: [12,14,16],
  ratio: 1.5
};

Ratios

Modular scale includes functions for a number of classic design and musical scale ratios. You can add your own ratios as well.

By default, the variable msRatios is set to 1.618.

VariableDecimal value
minorSecond 1.067
majorSecond 1.125
minorThird 1.2
majorThird 1.25
perfectFourth 1.333
augFourth 1.414
perfectFifth 1.5
minorSixth 1.6
goldenSection 1.618
majorSixth 1.667
minorSeventh 1.778
majorSeventh 1.875
octave 2
majorTenth 2.5
majorEleventh 2.667
majorTwelfth 3
doubleOctave 4

Add your own ratio by setting a variable.

$modularscale: {
  ratio: 1.234
};

Multiple threads

You may notice you can have multiple scales at once on modularscale.com formatted like this:

$modularscale: {
  base: [1],
  ratio: 1.5,
  a: {
    base: [1],
    ratio: 1.2
  }
};

To use a scale with the $modularscale.a settings pass the settings in msFunction(n,$modularscale.a) where n is the point on the scale you wish to find a value for. You can break this variable down and pass it through via its own object but it is consolodated in the output of modularscale.com.

Licence

The MIT License (MIT)

Copyright © 2015 Scott Kellum

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

The software is provided “as is”, without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and non-infringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.

FAQs

Last updated on 03 Apr 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc