From f706e008a1016c5f99b3770f34446311d0abcdd1 Mon Sep 17 00:00:00 2001 From: Thiago Date: Wed, 24 Jan 2018 21:07:11 -0200 Subject: [PATCH] Minor changes in package.json and README.md --- README.md | 5 +++-- package.json | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 130b9cd..edfd6f4 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ # Database-js + * [Install](#install) * [API](//github.com/mlaanderson/database-js/wiki/API) * [Examples](//github.com/mlaanderson/database-js/wiki/Examples) @@ -6,11 +7,11 @@ * [In the Browser](//github.com/mlaanderson/database-js/wiki/Browsers) ## About -Database-js was started to implement a common, promise based interface for SQL database access. The concept is to copy the Java pattern of using connection strings to identify the driver. Then provide wrappers around the implemented functionality to commonize the syntax and results. +Database-js was started to implement a common, promise-based interface for SQL database access. The concept is to copy the Java pattern of using connection strings to identify the driver. Then provide wrappers around the implemented functionality to commonize the syntax and results. Thus if SQLite, MySQL and PostgreSQL all have a database named test with a table named states we can access the data the same way. -Since database-js is still being held onto by NPM, the package name is database-js2 in NPM. +Since *database-js* is still being held onto by NPM, the current package name is **database-js2**. Database-js has built-in prepared statements, even if the underlying driver does not support them. It is built on Promises, so it works well with ES7 async code. diff --git a/package.json b/package.json index ce79d23..aecf825 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ }, "keywords": [ "database", + "database-js", "javascript", "adodb", "firebase",