What is my baseline version?

I couldn't find it here or google it. I could make my search wrong, but can anyone tell me how to find out the version of the spine I am using.

I tried backbone -version but it doesn't work

I also use a browser if it matters


Thanks to Yang Li,

In gitbash the "base infobase" worked fine .. thanks - mc805

+3


source to share


2 answers


on your website, you will need to enter

Backbone.VERSION

      



in the console and it will tell you

+10


source


Make sure you follow the instructions for using Backbone + Browserify correctly, there are some problems as Backbone doesn't load jQuery by default.

http://rkulla.blogspot.com/2014/04/using-browserify-with-jquery-backbonejs.html

http://learnjs.io/blog/2013/11/23/backbone-jquery-browserify/



You probably get Uncaught ReferenceError

because you don't need a proper foundation.

var Backbone = require('backbone');
console.log(Backbone.VERSION);

      

Also I hope you are using npm

instead bower

.

0


source







All Articles