Skip to content

Stenciljs component in any html javascript step by step guide

License

Notifications You must be signed in to change notification settings

ranjeetsinghbnl/stenciljs-javascript

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

Stencil component without a Framework

This is a step by step guide, how we can use a stencil component in a project without a JavaScript framework. Integrating a Stencil component to a project without a JavaScript framework is straight forward.If you're using a simple HTML page, you can add your component via a script tag.

Similar guides

I have created another framework integration guide to use stencil components

This example use the stencil component from the following project

Using NPM package

For example, if we published a component to npm, we could load the component through unpkg like this:

<!DOCTYPE html>
<html lang="en">
<head>
  <script src="https://unpkg.com/@ranjeetsinghbnl/product-mgmt-stenciljs@0.0.1/dist/product-mgmt/product-mgmt.js"></script>
  <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" />
  <style>
      body {
          background-color: #f7f7f7;
          margin-top: 3em;
      }
  </style>
</head>
<body>
<div class="container-fluid">
      <div class="row">
          <div class="col-sm-7">
              <mf-product-view></mf-product-view>
          </div>
          <div class="col-sm-5">
              <mf-product-cart></mf-product-cart>
          </div>
      </div>
  </div>
</body>
</html>

For more details you can also check the official integration guide.

About

Stenciljs component in any html javascript step by step guide

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages