Add some helping notes

This commit is contained in:
danbulant 2020-02-19 20:27:05 +01:00
parent cdaf51c0f5
commit 2f73b81a13

View file

@ -15,6 +15,10 @@ BPM on the other hand, stores all packages in one place and also saves a file to
This means, that it can save much space - some apps use same depndencies and same versions, so they will be merged.
## BPM create node_modules. Is it normal?
Yes! Because of how node works, BPM needs to create the directory, but instead of pasting the dependencies there, it creates a symlink pointing to the actual version.
## Commands
BPM is aimed to fully **replace** NPM, *but*, as of now, it cannot.
@ -24,4 +28,9 @@ Currently supported and working commands are:
* `view` (alias get, info) - Gets information about current project or given package from NPM's registry
* `bin` - Shows installation path of BPM
* `ping` - Does HTTP ping to NPM's registry. Note this is different from NPM ping, so it cannot be compared.
* `init` - Creates a default `package.json` in current working directory.
* `init` - Creates a default `package.json` in current working directory.
## Hide package.json warnings
Use the flag `--supressChecking` or `-sch` for short.