/charta.js

JS library for a compact text editor with cloud storage

Primary LanguageJavaScriptMIT LicenseMIT

Charta.js - jot down your thoughts anytime, anywhere.

This library can help you include various text editor functions into your web application. This module is a NodeJS module and is hosted through npm registry.

Installation Instructions

  1. If you haven't already, install Node.js first. This automatically will get npm (aka package manager for NodeJS) on your computer.
  2. Create a package.json file by running npm init in the Terminal.
  3. Then run npm i charta.
  4. Voila! Charta.js package is installed. See the instructions below on how to use it.

How to use?

  • Add the code below at the top of your JS file where you'd like to use this package.
const myFunctions = require("index.js")

const newNote = myFunctions.newNote;
const deleteNote = myFunctions.deleteNote;
const changeNote = myFunctions.changeNote;
const saveNote = myFunctions.saveNote;
const checkEmpty = myFunctions.checkEmpty;
  • Now the above functions newNote, deleteNote, and others are ready for your usage!

Contribution:

Design Elements: