How to install and use bower in windows 7
Asked Answered
G

2

9

I'm a beginner in using bower and had searched all over the internet for installing the bower but couldn't find step by step method for installing the bower. If you please help me for this I shall be very thankful to everyone.

Gunderson answered 8/3, 2016 at 22:15 Comment(0)
A
18

First you need to install node.js which you can do here: https://nodejs.org/en/download/. Once you have node installed you need to open a command prompt window. To install bower you enter the command npm install -g bower

Attestation answered 8/3, 2016 at 22:23 Comment(2)
thanks . can you send me the link full language details of polymer and also let me know how to use Polymer? is Polymer is better then the wordpress??Gunderson
Here are the getting started docs for polymer polymer-project.org/1.0/docs/start/getting-the-code.html. It's hard to say if it is better/worse than wordpress because they are two completely different things. Wordpress is a CMS, while polymer is more of a collection of/way of creating widgets you can use like html elements.Attestation
A
8

Follow the steps below to get Node/NPM, Bower & Git up and running for a new project.

1.Download & Install Node.js

2.Install Bower Globally - npm install -g bower

3.Download & Install Git

4.Create your Project Directory and cd into the project directory just created.

5.Initialize Git in your project - git init

6.Initialize your package.json for NPM dependencies - npm init (Answer the questions that it asks)

7.Initialize your bower.json for Bower dependencies - bower init (Answer the questions that it asks)

package.json & bower.json Docs

NPM package.json Docs
Bower bower.json Docs

Actinia answered 8/3, 2016 at 22:36 Comment(1)
thanks @Attestation by installing the #GIT and bower. i have to write a command into the node js to for the package.json and bower.json?Gunderson

© 2022 - 2024 — McMap. All rights reserved.