Détail du package

@jswork/next

afeiship511MIT1.2.13

A javascript OOP toolkit for mobile & modern web.

oop, js-core, next, tookit

readme

next

A javascript OOP toolkit for mobile & modern web.

version license size download

installation

npm install --save @jswork/next

node

import nx from '@jswork/next';

const MyClass = nx.declare({
  statics:{
    init: function(){
      console.log('hello next!')
    }
  }
})

browser

<script type="text/javascript" src="https://unpkg.com/@jswork/next"></script>
<script type="text/javascript">
(function (nx, global) {
  nx.declare('myApp', {
    statics: {
      init: function () {
        alert('hello next!');
      }
    }
  });
}(nx, nx.GLOBAL));
</script>

license

Code released under the MIT license.

changelog

1.2.13 (2025-04-25)

Features

  • add get maybe str-array (cfaffc4)

1.2.12 (2025-04-10)

Features

1.2.11 (2025-01-14)

Features

1.2.10 (2024-12-01)

Features

1.2.9 (2024-11-01)

Bug Fixes

Features

  • add stubPromise typigns (bddb4bd)

1.2.8 (2024-10-29)

Bug Fixes

1.2.7 (2024-10-23)

Bug Fixes

  • upt stub promise when undefined (0a56421)

1.2.6 (2024-08-17)

Bug Fixes

1.2.5 (2024-08-17)

Bug Fixes

1.2.4 (2024-08-08)

Bug Fixes

  • number path should work fine (25fe454)

1.2.3 (2024-08-07)

Bug Fixes

  • nx.del not exist value should work (2042975)

1.2.2 (2023-09-24)

Bug Fixes

1.2.1 (2023-09-24)

1.2.0 (2023-09-24)

Bug Fixes

Features

  • add conventional-changelog to prj (affa8e8)