需要主应用程序" package.json"

时间:2016-07-08 14:02:59

标签: browserify package.json

我制作的小型网络应用程序将通过npm和git repo提供。

我想阅读(通过Browserify)" package.json"主应用程序,将是:

  • 通过Git fork:

    my-app
    |-package.json <-- there it is
    |-src
    |--app.js <-- ('require from ../package.json')
    
  • 通过NPM

    user-app
    |-package.json <-- it's still here
    |-node_modules
    |--my-module
    |---src
    |----app.js <-- but this guy is now too far ('require from ../../../package.json')
    

如果用户具有自定义程序包路径,则这可能仍然不同。做require('package.json')并不起作用。

有没有办法可以确保我能够访问此文件?

0 个答案:

没有答案