nuvio
nuvio

Reputation: 2625

wso2 developing a frontend store front

I am interested in develop a frontend similar to the WSO2 API Manager's STORE or PUBLISHER applications. The operations I need to implement would be just something like:

What API / libraries should I use in order to do something similar?

Can I build a webapp in php or asp to do that?

many thanks

Upvotes: 0

Views: 257

Answers (1)

lalaji Sureshika
lalaji Sureshika

Reputation: 514

For the front-end applications of WSO2 API Manager,we have used our inbuilt javascript server-side scripting engine called 'Jaggery'.You can find more info about jaggery from here.

API Manager related back-end functionalities handle through an implemented java API.And its front-end functions handle through javascript/jquery.All the mapping between back-end API Manager related java based functionalities and front-end javascript functionalities handle through this Jaggery scripting engine. If you view API Publisher/Store source from here, the app directory structure has implemented as a template engine.A blog post related on How to customize the API Publisher/Store front-end apps can be found from here.

Other than that to implement API Publisher/Store front-end html views we have used bootstrap framework as described here.

Thanks;

Upvotes: 1

Related Questions