arjun kori
arjun kori

Reputation: 1120

apic: command not found : Strongloop

I want to create a Node.js Project with Strongloop,Loopback Framework also i am new to strong loop.I am learning api connect of Strongloop. But when i am creating project using git bash it throws error bash: apic: command not found Please help.

apic loopback project_name

But it throws error:

bash: apic: command not found

Upvotes: 2

Views: 1508

Answers (2)

Stefano Fenu
Stefano Fenu

Reputation: 179

As far as I know you should use the slc command instead:

slc loopback project_name

Upvotes: 0

libik
libik

Reputation: 23049

The error statement is clear - in your path is not executable with name "apic".

If apic is allowing running from command line, the "npm install apic -g" will make the apic global, therefore usable anywhere.

Upvotes: 0

Related Questions