Source: node-pixl-class Section: javascript Maintainer: Debian Javascript Maintainers Uploaders: Joseph Nahmias Testsuite: autopkgtest-pkg-nodejs Build-Depends: debhelper-compat (= 13) , dh-sequence-nodejs , dh-nodejs Standards-Version: 4.7.4 Homepage: https://github.com/jhuckaby/pixl-class Vcs-Git: https://salsa.debian.org/js-team/node-pixl-class.git Vcs-Browser: https://salsa.debian.org/js-team/node-pixl-class Package: node-pixl-class Architecture: all Multi-Arch: foreign Depends: ${misc:Depends} , Description: module for creating classes, with inheritance and mixins This library is provided as a means to create classes in a more classical sort of way, including support for static class members, proper constructors, inheritance, and mixins. . All classes generated are event emitters by default -- they inherit all the methods from Node's EventEmitter class, such as on(), once(), and emit(), and can use them directly. . Callback methods can be auto-converted into promises with NodeJS's util.promisify, making them instantly ready for async/await. . Node.js is an event-based server-side JavaScript engine.