Skip to content

Latest commit

 

History

History
executable file
·
33 lines (19 loc) · 1.04 KB

README.md

File metadata and controls

executable file
·
33 lines (19 loc) · 1.04 KB

####About####

icecream is a rapid web framework based on NodeJS. It was designed with a very small footprint for those who need a simple, elegant and pragmatic toolkit to build high-performing, full-featured web applications.

the source code is hosted on github.com and licensed under the MIT license.

any question about icecream, please feel free to contact zhengzhiyu@yeah.net

####Installation####

  • Install nodejs and npm.

  • Install icecream.

     npm install -g icecream 
    

    or

     sudo npm install -g icecream     
    

####Your first application####

  • create the application

     icecream create helloword         
    
  • run the server

     cd helloword
     npm install         
     node start.js
    
  • visit the application

    open http://localhost:3000