1.0.3 • Published 9 months ago

creaton-loader v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
9 months ago

creaton-loader

creaton

Loader for single-file Creaton components in Webpack

Install

npm i creaton-loader -D

webpack.config.js

module: {
  rules: [
    {
      test: /\.html?$/,
      loader: 'creaton-loader'
    }
    ... // other rules
  ]
},

example Component.htm

<h2>${ this.title }</h2>
<p>${ this.message }</p>

<script>
  import { httpRequest } from '../helpers'

  exports = class WHome {
    static mode = 'open'

    static async startConnect() {
      const home = await httpRequest('/db?page=home')
      
      this.title = home.title
      this.message = home.message
    }
  }
</script>
1.0.3

9 months ago

1.0.2

9 months ago

1.0.1

9 months ago

1.0.0

9 months ago