initial commit

This commit is contained in:
2025-03-14 22:07:19 +01:00
commit 878945a5f8
9 changed files with 1425 additions and 0 deletions

16
package.json Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "node-oauth-example",
"version": "1.0.0",
"description": "An example of oAuth2.0 using node",
"main": "index.js",
"repository": "https://githubb.com/sohamkamani/node-oauth-example",
"author": "sohamkamani",
"license": "MIT",
"scripts": {
"start": "node index.js"
},
"dependencies": {
"axios": "^0.21.1",
"express": "^4.16.3"
}
}