Skip to content

foundrycf/fpm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

98a6670 · Jan 17, 2013

History

61 Commits
Oct 15, 2012
Oct 15, 2012
Sep 24, 2012
Oct 11, 2012
Oct 12, 2012
Oct 11, 2012
Oct 11, 2012
Jan 17, 2013
Oct 15, 2012
Sep 26, 2012
Oct 11, 2012

Repository files navigation

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