This MEAN-stack tutorial describes using Bower to install AngularJS in your public folder. One of the steps describes creating a file called ".bowerrc" in your test-app folder. However, Windows won't let you create a file without a name. How do I accomplish this on a Windows system?
相关问题
- Getting “Error: EACCES, mkdir” whenever I try to i
- what a part does bower/bower-asset play in php app
- File not sending from Angular to Nodejs
- Failed to run task: 'bower --allow-root instal
- Excel file Download Not working in node.js using e
相关文章
- How to make Gulp.src fail if a file is missing?
- Bower is not recognized as internal or external co
- Mongo giving dup key error for fields with unique:
- ExpressJS variables in AngularJS - Mean Stack
- angular directory slick execution
- js-bson: Failed to load c++ bson extension, using
- How to use node-inspector with `npm start` for my
- Bower error: ENOTFOUND Package bower-bootstrap-acc
Another way to accomplish this is through Notepad++.
To create a file that starts with a "." in Windows, you just need to add a trailing ".".
So, simply name your file ".bowerrc." instead of ".bowerrc".
See https://superuser.com/questions/64471/create-rename-a-file-folder-that-begins-with-a-dot-in-windows for more information and more detailed solution if this doesn't work for you.
Simply rename the file you created:
on the command line (make sure to cd into your working directory), issue this command:
This will also work for other files common to webdev like
.htaccess
and.gitignore
Note: If you haven't installed git bash for windows, you may not have support for the
touch
command. In that case (as mentioned in one of the comments here), the easiest way to accomplish this is via the cli with: