On Jun 25, 2015, at 04:56, Elad Rosenberg wrote: > > Why im getting error about friendly url? attached.
You ran "npm init", indicating you would like to be guided through the process of creating a package.json file for a new project in the current directory. npm printed message explaining that, and then printed a few more lines telling you about other commands you can run after this setup is complete. Then npm asked you the first question in the setup process: what name would you like to give this new project? It suggested the name "myapp" because that is the name of the current directory. You could accept that default by pressing Enter, or type a different name. You typed the name "npm instal express --save", which is not a valid name because it contains characters that are not allowed in a URL. (Specifically, spaces are not allowed in URLs.) If you want to be guided through the process of setting up a package.json file, answer each question "npm init" asks. If you want to cancel instead, press ^C (Control-C). -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/1D30B523-2D6C-4115-90A1-2E29F6AF664E%40ryandesign.com. For more options, visit https://groups.google.com/d/optout.
