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

simple-piano-keyboard

v1.0.1

Published

Can display simple piano keyboard. (Note: No include sound)

Downloads

12

Readme

simple-piano-keyboard

⚠️Prease check the latest version of README.md in GitHub repository simple-piano-keyboard.The contents of README.md on npm is might a little old or include a bit mistakes because it's not updated without source code's change.

What is this?

simple-piano-keyboard is literally "simple piano keyboard" component of Vue.js🤣This package doesn't include mechanism of sound for now. But if you have sound sources and combine with, it's possible to create musical instrument, I think.This is very simple component but that's reason it has infinity possibility🤩

Project setup

Use npm

Install:

npm i simple-piano-keyboard

Add component and css to Vue:

import { createApp } from 'vue';
import SimplePianoKeyboard from 'simple-piano-keyboard';  // add this
import '../node_modules/simple-piano-keyboard/dist/style.css';  // add this
import App from './App.vue';

const app = createApp(App)
app.use(SimplePianoKeyboard)  // add this
app.mount('#app');

Use CDN

Latest version:

<script src="https://cdn.jsdelivr.net/npm/simple-piano-keyboard/dist/simple-piano-keyboard.umd.min.js"></script>

* Note: You need to describe Vue.js's CDN at same.

And describe like below in JS programs:

const { createApp } = Vue;

const vueContent = {
  // Your Vue contents
};

const app = createApp(vueContent);
app.use(SimplePianoKeyboard);
app.mount('#app');

Property list

This is the list of parameters you can input like below:

<simple-piano-keyboard v-model="selectedNotes" lowestNote="C3" highestNote="C4"></simple-piano-keyboard>

| Property | Type | Description | Default value | | :-------------- | :----------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | v-model | String[] or Number[] | Array of MIDI note number or international styled note name like 'C4'.For example, the central C on piano is 'C4'. And its one octave higher is 'C5'. MIDI note number of 'C4' is 60. Notes of black key can be expressed like 'A#2' by using #. The value of this property is interlockly changed with keyboard's selection state. | [] | | lowestNote | String or Number | The lowest note of a keyboard. | 'A0'(The lowest note of the piano with 88 keys) | | highestNote | String or Number | The highest note of a keyboard. | 'C8'(The highest note of the piano with 88 keys) | | keyHeightSize | Number | The height size number of each keys of keyboard. If you input 1, the white key's height is set 12px. | 10 | | keyWidthSize | Number | The width size number of each keys of keyboard. If you input 1, the white key's width is set 3px. | 10 | | padding | Number | The padding of the frame of keyboard. | 8 | | width | Number | The width of the frame of keyboard. Overflew areas are displayed by scrolling. | 380 | | color | Object | Define colors. | {whiteKey: '#FFFFFF', blackKey: '#222222', selectedWhiteKey: '#B2EBF2', selectedBlackKey: '#B2EBF2', keyBorder: '#212121', frameBorder: '#e0e0e0', noteName: '#212121'} | | thickness | Object | Define thickness of some borders. | {keyBorder: 1, frameBorder: 2} | | noteNameDisplay | Object | The settings of display note names on each key. type can be set 'none', 'intl' or 'num'. target can be set note alphabets not included # like 'A', 'C'. | {type: 'none', target: 'A'} | | noteOutputType | String | 'intl': International styled note name'num': Note number | 'intl' | | isReadOnly | Boolean | If you set true, clicking keys is be disabled. | false |