From c2409ada67b6055047ca8df18060b1ef606347de Mon Sep 17 00:00:00 2001 From: Manjunath Reddy Date: Tue, 28 Aug 2018 23:25:59 +0800 Subject: [PATCH] first init --- .gitignore | 73 +++++++++++++++++++++++++++++++++++++++++++++++ .nvmrc | 1 + README.md | 3 ++ package-lock.json | 5 ++++ package.json | 24 ++++++++++++++++ src/app.js | 1 + 6 files changed, 107 insertions(+) create mode 100644 .gitignore create mode 100644 .nvmrc create mode 100644 README.md create mode 100644 package-lock.json create mode 100644 package.json create mode 100644 src/app.js diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e0d3627 --- /dev/null +++ b/.gitignore @@ -0,0 +1,73 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless \ No newline at end of file diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..5e0613f --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v10.8.0 diff --git a/README.md b/README.md new file mode 100644 index 0000000..1712bb0 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Nodejs + Github Authentication Library + +_In progress_ \ No newline at end of file diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..a33c012 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,5 @@ +{ + "name": "nodejs-github-auth", + "version": "1.0.0", + "lockfileVersion": 1 +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..34722f9 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "nodejs-github-auth", + "version": "1.0.0", + "description": "Node.JS + Github Auth", + "main": "index.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/manjufy/nodejs-github-auth.git" + }, + "keywords": [ + "nodejs", + "github+auth", + "vuejs+github" + ], + "author": "Manjunath Reddy ", + "license": "ISC", + "bugs": { + "url": "https://github.com/manjufy/nodejs-github-auth/issues" + }, + "homepage": "https://github.com/manjufy/nodejs-github-auth#readme" +} diff --git a/src/app.js b/src/app.js new file mode 100644 index 0000000..da705b1 --- /dev/null +++ b/src/app.js @@ -0,0 +1 @@ +console.log('Lets set go.....') \ No newline at end of file