Skip to content
This repository was archived by the owner on Sep 25, 2023. It is now read-only.

Quick start guide

lwj edited this page Oct 23, 2012 · 60 revisions

Pomelo is a high-performance framework for node.js. Through some simple command, it can help you for avoid boring rehanding and underlying logic.

Installation

Install pomelo by npm(node package manager):

npm install pomelo -g

Also you can down the source code by the command of "git clone https://github.com/NetEase/pomelo.git".

Usage

Create new project

A new project can be created by two ways as follows:

first

Add path to command "pomelo init": 'pomelo init ./helloWorld'; If so, the command of "pomelo init" will automatically mkdir helloWorld and init it.

second

'mkdir helloWorld && cd helloWorld && pomelo init .'

At last, the dependencies should be installed by command "sh npm-install.sh"

Clone this wiki locally