BellDorian / SoftwareEng_Fall2024

Team Repository for the CSCI 450 fall 2024 semester project
0 stars 4 forks source link

Obtain query parameters (npm) #87

Closed BellDorian closed 1 week ago

BellDorian commented 2 weeks ago

For npm input, you need to make a request to npm registry in order to get the owner and repo name

j-leidy commented 2 weeks ago

const url = https://registry.npmjs.org/${packageName}

The function you create to make a request to the npm registry should return an object

{owner:string, repoName:string}

example (rough)