# damn-example-app

Can be referenced by it's name "damnExampleApp".

### Hint
Name (defined in manifest "package.json" ist "damn-example-app") - this
string will be transformed to camelcase syntax -> **damnExampleApp**.
To call it in another app (inside same project) use it directly from global
scope:

**controllers.js inside another app**
```JavaScript
/**
 * This action returns all examples.
 */
exports.index = function(req, res) {
    damnExampleApp.Example.all(function(err, examples) {
        res.json(examples);
    });
};
```