Skip to content

Instantly share code, notes, and snippets.

View niradler's full-sized avatar
🎮

Nir Adler niradler

🎮
View GitHub Profile
const config = {
url: 'https://book-store-adonis.herokuapp.com/api',
actions: {
get:{
method: 'GET',
path: '/book/:id'
}
}
}
{
"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"
},
@niradler
niradler / package.json.express.api
Last active December 31, 2017 14:55
package.json for express base projects
{
"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",
import React, {Component} from 'react';
import Input from './Input';
class Form extends Component {
constructor(props) {
super(props);
this.state = {
fname: '',
lname: ''
};
this.fields = [
@niradler
niradler / ReactInput.js
Last active November 20, 2017 17:04
react input component
import React, {Component} from 'react';
class Input extends Component {
constructor(props) {
super(props);
this.state = {
value: ''
};
this.handleChange = this
.handleChange
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: '*',