simple-view

Fork of Backbone.View (and Backbone.Events), ported to CommonJS with no jQuery

Usage no npm install needed!

<script type="module">
  import simpleView from 'https://cdn.skypack.dev/simple-view';
</script>

README

simple-view

Fork of Backbone.View (and Backbone.Events):

  • simplified to support only commonjs.
  • browser support requires a commonjs bundler (e.g. webpack or browserify)
  • jQuery dependency has been removed
  • no support for view.$el
  • view.$ uses view.el.querySelectorAll
  • Specs have been ported from QUnit + phantomjs to mocha + jsdom.
  • specs are no longer run on an actual browser, use at your own risk.

installation:

npm install --save simple-view

usage:

const View = require('simple-view').View;

documentation

See Backbone.View.