Skip to content
Snippets Groups Projects
Volker Schukai's avatar
b674da9b
History

Monster

Build fantastic websites!

Monster is a lightweight, robust and easy-to-use library with modest ambitions. Monster integrates easily into your existing websites without taking over everything.

It is not the goal of Monster to pull in a completely new abstraction with its own language, but to combine the existing techniques of HTML, CSS and Javascript in a meaningful way.

Monster is perfectly suited for the creation of beautiful and fast user interfaces and websites. The basis is formed by core functions that can be supplemented by necessary classes and objects.

One first design target is to reach the shiny sun with as little Javascript as possible. That is why we do not have any external dependencies.

Monster was built with ES6 modules and uses import and export.

There is a version in the /dist folder that was built via webpack and
thus supports all browsers that are compatible with ES5.

To make compatibility with the older browsers polyfill.io is a good choice.

Documentation

To check out docs and examples, visit monsterjs.org/en/doc/latest/.

Questions

For questions and commercial support please contact schukai GmbH. The issue list of this repo is exclusively for bug reports and feature requests.

Issues

Please make sure to read the Issue Reporting Checklist before opening an issue. Issues not conforming to the guidelines may be closed immediately.

License

  • All content residing under the docs/ directory of this repository is licensed under "Creative Commons: CC BY-SA 4.0 license".
  • All packages that resides under the packages/ directory of this repository, if that directory exists, is licensed under the license defined in packages/<package>/LICENSE.
  • All third-party components that are integrated into our software are licensed under the original licence provided by the owner of the respective component.
  • Content outside the above directories or restrictions is available under the AGPL 3.0.

you can also purchase a commercial licence

Changelog

Detailed changes for each release are documented in the corresponding CHANGELOG files.

Build & Development

// create documentation
make doc

// create documentation and push to aws
make doc-2-aws

// build all packages
make build

// test all packages
make test

// build packages
PACKAGE=monster
make build-${PACKAGES}
make build-browser-test-${PACKAGES}
make test-${PACKAGES}
make npm-publish-${PACKAGES}