mafintosh / mafintosh/docker-parse-image
Add new key for namespace + repository (maybe 'name')
Nobody has claimed this yet.
- Dominant language
- JavaScript
- Stars
- 22
- Forks
- 5
- PR merge metrics
- No merged PRs in 30d
Description
```
console.log(parse('registry.com/ubuntu:14.04'))
// --> {registry:'registry.com', namespace:null, tag:'14.04', name:'ubuntu', repository:'ubuntu'}
```
```
console.log(parse('registry.com/staging/ubuntu:14.04'))
// --> {registry:'registry.com', namespace:'staging', tag:'14.04', name:'staging/ubuntu', repository:'ubuntu'}
```
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start with the parser entry point used by parse(...), and inspect how registry, namespace, tag, name, and repository are derived. Update the output so both examples include name as shown, then verify parsing for images with and without a namespace.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- docker, javascript
- Domain
- devtools
- Issue type
- Feature
- Difficulty
- 2/5
- Estimated time
- 1-3 hours
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 55/100