This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Angular JS</title> | |
| </head> | |
| <body ng-app="myapp"> | |
| <div ng-controller="DemoCtrl as demo"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var PouchDB = require('pouchdb'); | |
| PouchDB.plugin(require('pouchdb-authentication')); | |
| //with Admin account | |
| var dbUrl = encodeURI('https://mylogin:[email protected]/testaccess'); | |
| var db = new PouchDB(dbUrl, {skipSetup: true}); | |
| var options = { | |
| metadata : { | |
| email : '[email protected]', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "version": "0.1.0", | |
| "configurations": [ | |
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Debug Nest JS", | |
| "program": "${workspaceFolder}/dist/main.js", | |
| "preLaunchTask": "tsc: build - tsconfig.json", | |
| "outFiles": [ |
OlderNewer