1.1.0 • Published 6 years ago

signup-login v1.1.0

Weekly downloads
18
License
ISC
Repository
github
Last release
6 years ago

Signup Login Module

The signup-login module is a Node.js based loopback script and it provides a fastest way to create user signup and login services with authentication.

Pre-requisites

Node.js , and the platform-specific tools needed to compile native NPM modules (which you may already have):

Installation

To install the signup-login module, simply run the following command within your app's directory:

npm i  signup-login --save

Development

var loopback = require("signup-login");

Database Configuration:

var dbConfig = {"name":"","options":{
	
	"host": "",
    "port": ,
    "url": "",
    "database": "",
    "password": "",
    "user": "",
    "connector": "" // connector name ex. mongodb or mysql
}};

var database = new loopback.datasource(dbConfig);

Example Model Configuration:

var modelConfig = {

   "name": "driver",
   "properties": {
    "email": {
      "type": "string",
      "required": true
    },
    "firstname": {
      "type": "string"
    },
    "lastname": {
      "type": "string"
    },
    "username": {
      "type": "string",
      "required": true
    },
    "password": {
      "type": "string",
      "required": true
    },
    "phone": {
      "type": "number"
    }
  }
};	
 var model = new loopback.model(modelConfig); 

Include following code in your index file:

var appStart = loopback.app; appStart.start();

Verify the deployment by navigating to your server address in your preferred browser.

http://host:port/explorer

Example:

http://localhost:57304/explorer

#Licence MIT