All Projects → backand → angular-yeoman-todos

backand / angular-yeoman-todos

Licence: MIT license
Backand todos for Angular with yeoman

Programming Languages

javascript
184084 projects - #8 most used programming language
ApacheConf
554 projects
HTML
75241 projects
CSS
56736 projects

Todo Project

A simple website demonstrating CRUD with Backand, built using yeoman for Angular

Example

You can review the example @ codepen

Prerequisites

You will need:

Getting Started

To get the application running, perform the following steps:

  1. Create a new application in Backand.
  2. After creation, paste the following JSON into the "Custom Model" text box on the "New Hosted Database" tab:
[
  {
    "name": "todo",
    "fields": {
      "description": {
        "type": "string"
      },
      "completed": {
        "type": "boolean"
      }
    }
  }
]
  1. Run the following commands from the console:
git clone https://github.com/backand/angular-yeoman-todos.git
cd angular-yeoman-todos

npm install
bower install
grunt serve
  1. Navigate to localhost:9000.

  2. Hooray! Now you can interact with API running on Backand! How simple was that??

Testing

Running grunt test will run the unit tests with karma.

Running your own API server

If you would like to run your own api, then sign-up to Backand and create new app

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].