I need help to choose tools to create a web frontend for Jfrog Artifactory. It has a web ui, but it is not easy to use out of the box.
What I need, is to be able to create a simple webpage where "customers" can search out software, by enabling different properties on the artifacts.
Ex. if the CODESYS feature is desired, then it can be selected from a drop down box.
Product owner should also be able to mark releases available to external customers.
What tools should I use to be doing that?
- Does Artifactory have tools to do this? '
- Can I write a web page which does queries against Artifactory.
- and if so what frameworks can be used
- Or something else
You could leverage the jfrog-client-js
https://github.com/jfrog/jfrog-client-js
First you instantiate the client and get the object (jfrogClient in the case below)
Next, you use this object (jfrogClient) to interact with your Artifactory
The above code will return an array of your search results, which you will then send to your web UI for display.