# resume-maker

[![NPM Version](https://img.shields.io/npm/v/resume-maker.svg)](https://www.npmjs.com/package/resume-maker)

![Alt text](https://drive.google.com/uc?export=view&id=0B3XkfYbZArSfdTc4ZVV4X0V0UGc)

## Install

```bash
$ git clone https://github.com/u4bi-dev/resume-maker.git resume
```

```bash
$ npm install
```

## build

```bash
$ npm run build
```

##### resume.js

```html
<script src="https://cdn.rawgit.com/u4bi-dev/resume-maker/master/dist/resume.js"></script>
```
```javascript
var resume = new Resume(element);
resume.render(data); // HTTP Link , JSON Object, JSON String
```

##### JSON Rule
```json
{
    "header" : {
        "avatar" : "https://avatars3.githubusercontent.com/u/21367010?v=4&s=460",
        "name": "Myungjae Yu",
        "job" : "Frontend Developer",
        "bio" : "This is the executive summary.",
        "email" : "u4bi@daum.net",
        "icon" : {
            "github"    : "https://github.com/u4bi",
            "linkdin"   : "https://github.com/u4bi",
            "facebook"  : "https://github.com/u4bi",
            "instagram" : "https://github.com/u4bi",
            "twitter"   : "https://github.com/u4bi",
            "website"   : "https://github.com/u4bi"
        }
    },
    "projects" : [
        {
            "name" : "Test Project 1",
            "link" : "https://github.com/u4bi",
            "date" : {
                "start" : "2017/09/06",
                "end"   : "2017/09/07"
            },
            "bio" : "Test Web Project"
        }
    ],
    "skills" : [
        { 
            "title" : "Programming Languages",
            "entry" : [
                "Test Languages 1",
                "Test Languages 2"
            ]
        }
    ],
    "experience" : [
        {
            "name" : "Test Company 1",
            "link" : "https://github.com/u4bi",
            "job"  : "Frontend Developer",
            "date" : {
                "start" : "2017/09/06",
                "end"   : "2017/09/07"
            },
            "address" : "Yeoksam, Seoul",
            "bios" : [
                "Test Comment 1",
                "Test Comment 2"
            ]
        }
    ],
    "eduandcert" : {
        "edu" : [
            {
                "title" : "Test College",
                "link" : "https://github.com/u4bi",
                "name"  : "Test lang",
                "date" : {
                    "start" : "2017/09/06",
                    "end" : "2017/09/07"
                }
            }
            
        ],
        "cert" : [
            {
                "title" : "Test Campus",
                "link" : "https://github.com/u4bi",
                "name" : "Test lang",
                "date" : "2017/09/07"
            }
            
        ]
    },
    "footer" : {
        "live" : false
    }
}

```

## License
[MIT](LICENSE)