This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const config = { | |
url: 'https://book-store-adonis.herokuapp.com/api', | |
actions: { | |
get:{ | |
method: 'GET', | |
path: '/book/:id' | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "project-name", | |
"version": "0.0.1", | |
"description": "baebl simple use", | |
"main": "dist/index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1", | |
"build": "babel source --presets babel-preset-es2015 --out-dir dist", | |
"prepublish": "npm run build" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "company_api", | |
"version": "1.0.0", | |
"description": "company api", | |
"main": "index.js", | |
"author": "company", | |
"license": "ISC", | |
"private": true, | |
"scripts": { | |
"start": "nodemon src/index.js --exec babel-node --presets es2015,stage-2", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
import Input from './Input'; | |
class Form extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
fname: '', | |
lname: '' | |
}; | |
this.fields = [ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, {Component} from 'react'; | |
class Input extends Component { | |
constructor(props) { | |
super(props); | |
this.state = { | |
value: '' | |
}; | |
this.handleChange = this | |
.handleChange |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const mysql = require('mysql'); | |
const json2csv = require('json2csv'); | |
const fs = require('fs'); | |
const await = require('asyncawait/await'); | |
const async = require('asyncawait/async'); | |
var knex = require('knex')({ | |
client: 'mysql', | |
connection: { | |
host: '*', |
NewerOlder