Skip to content

Latest commit

 

History

History
37 lines (33 loc) · 1.52 KB

File metadata and controls

37 lines (33 loc) · 1.52 KB

fpm

a package manager for foundry

This is not even an alpha... purely in it's concept stages. Thinking of using Foundry as a way to do a port of NPM to CF.

One of our goals with Foundry is to make porting Node-based apps a cinch.

##Usage Examples ###From the CLI Install all defined dependencies in foundry.json (in your project)
fpm install

Install a single module (in your project)
fpm install UnderscoreCF

Install a single module globally (for all projects to use).
fpm install UnderscoreCF -g

Create a foundry symlink to a project folder globally (for all projects to use).
This is handy for installing your own stuff, so that you can work on it and test it iteratively without having to continually rebuild.
fpm link

###From the url Install all defined dependencies in foundry.json (in your project)
http://my-project/foundry/cli.cfc?method=install

Install a single module (in your project)
http://my-project/foundry/cli.cfc?method=install&id=UnderscoreCF

Install a single module globally (for all projects to use).
http://my-project/foundry/cli.cfc?method=install&id=UnderscoreCF&opts=g

Create a foundry symlink to a project folder globally (for all projects to use).
This is handy for installing your own stuff, so that you can work on it and test it iteratively without having to continually rebuild.
http://my-project/foundry/cli.cfc?method=link