phylum
Installation
# Linux

# download install script to local
curl https://sh.phylum.io/ >phylum.sh

# change mode to executable
chmod 655 phylum.sh

# execute script
./phylum.sh

# Mac

brew tap phylum-dev/cli
brew install phylum
		
Registration
# register new account
phylum auth register
		
Login
# login
phylum auth login
		
Initialize Project
phylum init

# select lockfiles and manifests with space key

# or end selection with a comma

# lockfile, contains all information necessary to ensure you're always installing 
# exactly the same dependencies every time on every machine, such as, requirements.txt in Python

# manifest, contains a list of files that will be included in the archive file
		
Submit Lockfile
# submit selected lockfile in init
phylum analyze

# submit a specifc lockfile
phylum analyze requirements.txt
		
View Analysis
https://app.phylum.io/
        
Reference
  • Docs