1.0.0 • Published 7 years ago

stack-io v1.0.0

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

forthebadge forthebadge forthebadge forthebadge

JavaScript Style Guide

For more details, head to: https://stack-writer.com. The project structure is based on electron-vue.

Currently, under heavy development.

Core of the key-value based note store

Introduction

What is Stack? Stack is a core package which enables you to use a key-value based store api for taking notes.

Install

npm install --save chryb/stack

Usage

import stack from 'stack-io'

// add a note
stack(note: string, )
stack.add(note: string)

// remove note
stack.remove(noteId: string)

Contribute

  1. Fork this repository to your own GitHub account and then clone it to your local device
  2. Install the dependencies: npm install
  3. Build the code and watch for changes: npm run dev
  4. Lint your code: npm run lint
  5. Commit and push your changes to the forked repository
  6. Open a pull request from the new branch to the original repo
  7. Clean up after your pull request is merged