Skip to content

foundrycf/fpm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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

Releases

No releases published

Packages

No packages published