Monday, June 1, 2015
Saturday, May 30, 2015
Wednesday, May 27, 2015
SASS - Resources about Sass maven plugin
http://www.yegor256.com/2014/06/26/sass-in-java-webapp.html
http://mvnrepository.com/artifact/org.jasig.maven/sass-maven-plugin/1.1.1
<dependency>
<groupId>org.jasig.maven</groupId>
<artifactId>sass-maven-plugin</artifactId>
<version>1.1.1</version>
</dependency>
http://mvnrepository.com/artifact/org.jasig.maven/sass-maven-plugin/1.1.1
<dependency>
<groupId>org.jasig.maven</groupId>
<artifactId>sass-maven-plugin</artifactId>
<version>1.1.1</version>
</dependency>
Monday, May 25, 2015
JavaScript - JSON.parse(), JSON.stringify()
https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Global_Objects/JSON/parse
https://developer.mozilla.org/ru/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify
Sunday, May 24, 2015
WebStorm JetBrains - install and run sample AngularJS app
1. Install WebStorm
2. Install NodeJS
3. Check it is installed:
C:\Users\Andre>npm -version
2.10.1
4. Run from the AngularJS root project directory npm install:
e.g. listed below.
5. In order to debbug JavaScript check that your Chrome has jetbrains-ide-support extension. If it is not installed look for it here: https://chrome.google.com/webstore/detail/jetbrains-ide-support/hmhgeddbohgjknpmjagkdomcpobmllji
2. Install NodeJS
3. Check it is installed:
C:\Users\Andre>npm -version
2.10.1
4. Run from the AngularJS root project directory npm install:
e.g. listed below.
5. In order to debbug JavaScript check that your Chrome has jetbrains-ide-support extension. If it is not installed look for it here: https://chrome.google.com/webstore/detail/jetbrains-ide-support/hmhgeddbohgjknpmjagkdomcpobmllji
JavaScript - testing tools: Jasmine (BDD), JsUnit, Karma (test runner)
1. Jasmine http://jasmine.github.io/ is the priority for testing, due to its BDD approach.
2. JsUnit is an option (w/o BDD):http://www.jsunit.net/
3. Karma http://karma-runner.github.io/0.12/index.html - it is JavaScript test runner.
2. JsUnit is an option (w/o BDD):http://www.jsunit.net/
3. Karma http://karma-runner.github.io/0.12/index.html - it is JavaScript test runner.
Subscribe to:
Posts (Atom)