Skip to content

The open source framework for rapid business application development with Node.js

License

Notifications You must be signed in to change notification settings

MaxSor/allcountjs

 
 

Repository files navigation

Build Status Gitter

What is AllcountJS

AllcountJS is an application framework aimed for rapid development of business applications. The main idea is to make application development fully declarative and reduce application configuration to minimum possible amount.

Try it

Documentation

Install

Before we start you should install Node.js, MongoDB and Git. After that in order to install AllcountJS CLI you should run:

NOTE: Preferred way to install and run allcountjs on Windows is to use Git-Bash.

npm install -g allcountjs-cli

NOTE: Users who prior installed allcountjs globally could continue use it but this way should be considered as deprecated.

Running Hello World

AllcountJS server uses Git repositories and regular directories to load app configurations from it and MongoDB to store application data. To use AllcountJS Git capabilities Git should be installed and available in path. To init new AllcountJS project just run

allcountjs init

You'll be prompted to enter project name, description and other info saved to package.json. You could also pass --template <template_name> option that could be used to init your project with existing demo at Demo Gallery. template_name can be found at Demo Gallery. After project is initialized you could see created from template app-config/ and package.json in newly created project directory. In order to install AllcountJS dependencies please run:

cd <project_name> && npm install

To run your project and to connect to local MongoDB instance please run from project dir:

allcountjs run

Please note that MongoDB should be running in order to run this example.

License

AllcountJS is licensed under the MIT Open Source license. For more information, see the LICENSE file in this repository.

About

The open source framework for rapid business application development with Node.js

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 88.4%
  • HTML 8.7%
  • CSS 2.9%