# coding-serbia-angularjs-workshop
**Repository Path**: mirrors_codecentric/coding-serbia-angularjs-workshop
## Basic Information
- **Project Name**: coding-serbia-angularjs-workshop
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-08-08
- **Last Updated**: 2025-12-06
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# Coding Serbia 2014 - AngularJS workshop repository
This is the repository used in the AngularJS workshop at Coding Serbia 2014. Participants use it as a starting point and extend the existing AngularJS app in this repo with new features. See for more info.
This is a fork of .
## System requirements
*Make sure that you have [node.js with NPM](http://nodejs.org/) installed on
your machine.
This project uses a standard node.js module descriptor (`package.json`) and
[Grunt](http://gruntjs.com/) as a tool for test execution and static source
code analysis. To install the project's dependencies, simply run `npm install`
in the project's root directory. This will make sure that the development tools
are locally installed.
To make use of Grunt, you further need to have its CLI tool on your path.
```
npm install -g grunt-cli
```
The most useful Grunt tasks currently is `test` for test execution and
`dev` to run a development mode. To execute these tasks, simple call
Grunt:
```
grunt test
```
or
```
grunt dev
```
respectively.
The development mode will automatically spin up a server which will be restarted
upon file changes. Furthermore all unit tests will be executed whenever you change
a file.
## Automatically restarting the express server on file changes
*You can stop reading right now when you are using the `grunt dev` task. The
task automatically restarts the server for you.*
Automatically restarting the server on file changes is desirable as this
increases your development pace.
[Supervisor](https://github.com/isaacs/node-supervisor) can help you with this.
```
# To install supervisor
npm install -g supervisor
# Then run the server
supervisor src/server.js
```
## License (MIT)
Copyright (c) 2013-2014 codecentric AG
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.