Commit c258f3a8 authored by Tristan Cavelier's avatar Tristan Cavelier

Add attractive first lines to README.md Documentation

parent 023ff6c6
Javascript Input/Output Javascript Input/Output
======================= =======================
Powerful, Intelligent, and Intuitive back-end to write over the internet
========================================================================
How easy is it to get, save or remove a document?
-------------------------------------------------
```
// get 'document.txt'
jio.get('document.txt',function (err, val) {
console.log (err || val.content);
});
// update 'document.txt'
jio.put({_id:'document.txt',content:'newcontent'}, function (err, val) {
console.log (err || val);
});
// get a list of documents
jio.allDocs(function (err, val) {
console.log (err || val.total_rows);
});
// remove 'document.txt'
jio.remove ({_id:'document.txt'}, function (err, val) {
console.log (err || val);
});
```
Documentation Index
===================
+ [What is jIO?](#what-is-jio) + [What is jIO?](#what-is-jio)
+ [How does it work?](#how-does-it-work) + [How does it work?](#how-does-it-work)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment