FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
stack-analyze/functions/gitUser.js at master · stack-analyze/stack-analyze · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
stack-analyze
/
stack-analyze
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
3
Code
Issues
0
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
stack-analyze
/
functions
/
gitUser.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
39 lines (33 loc) · 985 Bytes
Breadcrumbs
stack-analyze
/
functions
/
gitUser.js
Copy path
File metadata and controls
39 lines (33 loc) · 985 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// modules
const
{
format
}
=
require
(
"timeago.js"
)
;
const
{
red
}
=
require
(
"colors"
)
;
// save git user
const
{
stackSave
}
=
require
(
"../utils.js"
)
;
/**
*
*
@description
call github info user
*
@async
*
@param
{
string
} user - get github user info
*
@returns
{
Promise<void>
} - return results info
*
*/
const
githubInfo
=
async
(
user
)
=>
{
try
{
const
data
=
await
(
await
fetch
(
`https://api.github.com/users/
${
user
}
`
)
)
.
json
(
)
;
const
info
=
{
username
:
data
.
login
,
fullName
:
data
?.
name
??
"no info"
,
userFollowers
:
data
.
followers
,
userFollowing
:
data
.
following
,
accountAge
:
format
(
data
.
created_at
)
,
twitter
:
data
?.
twitter_username
??
"no info"
,
repos
:
data
.
public_repos
,
gists
:
data
.
public_gists
}
;
console
.
table
(
info
)
;
stackSave
(
`
${
user
}
-info.json`
,
JSON
.
stringify
(
info
,
null
,
2
)
)
;
}
catch
(
err
)
{
console
.
error
(
red
(
(
/**
@type
{
Error
} */
(
err
)
)
.
message
)
)
;
}
}
;
module
.
exports
=
githubInfo
;
Back
|
FazBrowse Home
|
New Git URL