NPM Error - App-framewrk installation

53 views Asked by At

I tried to install the framework7 app - framework app-framework github . But got this error

npm WARN enoent ENOENT: no such file or directory, open '/Users/user/package.json' npm WARN user No description npm WARN user No repository field. npm WARN user No README data npm WARN user No license field.

Please guide

1

There are 1 answers

0
Djiggy On

You have to create package.json file with these informations :

{
  "name": "my-app",
  "version": "1.0.0",
  "devDependencies": {
    "app-framework": "*"
  }
}

Cf. project setup