Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ni-c/photos.js
Photoblog in node.js
https://github.com/ni-c/photos.js
Last synced: 3 days ago
JSON representation
Photoblog in node.js
- Host: GitHub
- URL: https://github.com/ni-c/photos.js
- Owner: ni-c
- License: mit
- Created: 2014-09-22T16:41:17.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-21T22:57:12.000Z (almost 10 years ago)
- Last Synced: 2024-04-14T14:46:34.176Z (7 months ago)
- Language: JavaScript
- Size: 2.3 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# photos.js
Photoblog in node.js
![Screenshot](https://raw.githubusercontent.com/ni-c/photos.js/master/screen.png)
## Features
### Frontend
- Responsive Design
- Single-page application using AngularJS
- …that also works without Javascript
- Touch enabled
- Scalable vector icons### Backend
- node.js with Express Framework
- Less and Jade
- Metadata and photos stored in MongoDB with GridFS
- Automatic photo resizing and EXIF parsing
- I18n## Installation
### node.js
Install node.js: [http://nodejs.org](http://nodejs.org/)
### Imagemagick || Graphicsmagick
Install Imagemagick [http://www.imagemagick.org/](http://www.imagemagick.org/) or Graphicsmagick [http://www.graphicsmagick.org/](http://www.graphicsmagick.org/)
### Bower
Install Bower [http://bower.io](http://bower.io):
```bash
npm install -g bower
```### Modules
Install bower modules:
```bash
bower install
```Install node modules:
```bash
npm install
```## Import JPGs
Import JPGs using the photo-import.js script:
```bash
node photo-import photo1.jpg
```## Run
````bash
node photos.js
````## License
MIT License
Copyright (c) 2014 Willi Thiel ([email protected])
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.