Posts

Showing posts with the label Windows

How to convert SASS to CSS using nodeJs

Image
I picked node-sass implementer for libsass because it is based on node.js. Installing node-sass (Prerequisite) If you don't have npm, install  Node.js  first. $ npm install -g node-sass  installs node-sass globally  -g . This will hopefully install all you need, if not read libsass at the bottom. How to use node-sass from Command line and npm scripts General format: $ node - sass [ options ] < input . scss > [ output . css ] $ cat < input . scss > | node - sass > output . css Examples: $ node-sass my-styles.scss my-styles.css  compiles a single file manually. $ node-sass my-sass-folder/ -o my-css-folder/  compiles all the files in a folder manually. $ node-sass -w sass/ -o css/  compiles all the files in a folder automatically whenever the source file(s) are modified.  -w  adds a watch for changes to the file(s). More usefull options like 'compression'  @ here . Command line is good for ...

Installation guide for installing Apache Solr 4+ with Apache Tomcat 7 on Winows Server 2008 R2

Image
Step by step installation guide for installing Apache Solr 4+ with Apache Tomcat 7 on Winows Server 2008 R2. Applicable to: nopAccelerate nopSolr Search nopSolr Navigation Self-hosted Solr Instance use case Note: This installation guide assumes that you’re installing Apache Solr on your Windows Server 2008 R2 or Dedicated Server. For installing Apache Solr on any other Server or Linux OS, try searching Google for help. System Requirements Java 6 or greater Installation Steps Step 1: If your server does not have latest version of Java installed, please install latest Java. Apache Solr runs on Java 6 or greater. When using Java 7, be sure to install at least Update 1! With all Java versions it is strongly recommended to not use experimental -XX JVM options. It is also recommended to always use the latest update version of your Java VM, because bugs may affect Solr. An overview of known JVM bugs can be found on  http://wiki.apache.org/lucene-java/SunJavaBugs . ...

Popular posts from this blog

How to Secure Session Management in Node

Angular 9 - User Registration and Login Example & Tutorial

How to download a file using command prompt (cmd) Windows?