Quantcast
Channel: Eureka! » Yeoman
Viewing all articles
Browse latest Browse all 4

Setup Yeoman in Windows PowerShell

$
0
0

1. Download Node.js and install it and make sure you have the npm package manager selected before the installation.
setup-yeoman-in-powershell-1
 

2. Open PowerShell and verify the npm installation.
setup-yeoman-in-powershell-2
 

3. Also verify if you have Ruby and Compass installed.
setup-yeoman-in-powershell-3
 

4. If no Ruby and Compass, download and install Ruby and then install the Compass by

gem install compass

 

5. Install Yo, Grunt and Bower using npm.

npm install -g yo

 

6. Verify the installations.
setup-yeoman-in-powershell-4
 

7. Also install the webapp generator.

npm install -g generator-webapp

 

8. Create your webapp project folder. In this example, i created the folder called eureka.

mkdir eureka

 

9. Change directory to your project folder.

cd eureka

 

10. Create your first webapp with Twitter Bootstrap with SASS and Modernizr.

yo webapp

setup-yeoman-in-powershell-5
 

11. Run the Grunt server and preview your webapp @ http://localhost:9000/.

grunt server

setup-yeoman-in-powershell-6
 

12. If you get the same error Syntax error: Invalid CP950 character "xE2" as above, open the app\bower_components\sass-bootstrap\lib\_grid.scss and replace to -.
setup-yeoman-in-powershell-7
 

13. Restart the server and your first Yeoman webapp with HTML5 Boilerplate, Bootstrap with SASS and Modernizr is now ready!
setup-yeoman-in-powershell-8
 

Done =)

Reference: Yeoman


Filed under: Web Development Tagged: Bootstrap, Bower, Compass, Gem, Grunt, HTML5, HTML5 Boilerplate, Javascript, Modernizr, Node Package Manager, Node.js, npm, PowerShell, Ruby, Sass, Twitter, Yeoman, Yo

Viewing all articles
Browse latest Browse all 4

Trending Articles