Remote module live preview.

Hi Community. 
I want to develop a custom Creatio UI component in angular, so I decided to use remote module approach. Is there a way to have a live server to see what I'm developing in real time ? 

Like 0

Like

1 comments

In the projects/YourComponent/src/index.html folder, there should be an index.html file where you can register your component. After registering the component, run npm start to launch the development server, and you will be able to view the component in the browser.

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
  // Example usage in Creatio
  <qnovate-demo 
    [creatioData]="lookupData"
    displayColumn="Name"
    valueColumn="Id"
    [(selectedValue)]="selectedId">
  </qnovate-demo>
</body>
</html>
Show all comments