Skip to content

kccd/nkc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nkc

Requirements

Main Frameworks

Install

  1. install all the requirements
  2. clone this repo
  3. run npm build in your console
  4. run npm run init to initialize data
  5. run npm run build-pages-p to compile the page
  6. npm start and you are able to access via localhost:1086

How to call an API

  • In browser
import {nkcAPI} from 'pages/lib/js/netAPI';
import {sweetError, sweetSuccess} from 'pages/lib/js/sweetAlert';

nkcAPI(`pathToYourTarget`, HTTP_Method, {someParameter:'someValue'})
  .then(sweetSuccess)
  .catch(sweetError)

Future plans

  • change the template engine into React,
  • isomorphism
  • multiple device support(IOS, android, etc)