3.1.5 • Published 11 months ago

@randajan/simple-app v3.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Simple node.js app

NPM JavaScript Style Guide

Goal is to provide supersimple start for developing and deploying full stack app in one package

Instalation

npm install -D @randajan/simple-app;

or

yarn add -D @randajan/simple-app;

Usage

import sapp from "@randajan/simple-app";

//those values are default values

sapp(
  isProd=true                           //false = start dev server; true = generate minify build and start prod server
  {
    port:3000,                          //port of server
    srcdir:"src",                       //directory of source code
    distdir:"dist",                     //directory of build
    rebuildBuffer:100,                  //delay between src changed and rebuild happend
    external:[],                        //global esbuild external libraries
    plugins:[],                         //global esbuild plugins
    loader:{},                          //global esbuild loader
    info:{
      home:`http://localhost:${port}`   //home url
    },                                  //variables accessible via import info from "@randajan/simple-app/info"
    injects:["index.html"],             //dist/frontend files where info variables will be injected between brackets {{name}}
    be:{                                //backend options
      dir:"backend",                    //backend subdirectory
      minify:isProd,                    //backend minify - true = generate minify build; if null then isProd 
      entries:["index.js"],             //backend entry files
      external:[],                      //backend esbuild external libraries
      plugins:[],                       //backend esbuild plugins
      loader:{},                        //backend esbuild loader
      io:{},                            //backend default io config
      info:{},                          //variables accessible only at backend via import info from "@randajan/simple-app/info"
    },
    fe:{                                //frontend options
      dir:"frontend",                   //frontend subdirectory
      minify:isProd,                    //frontend minify - true = generate minify build; if null then isProd 
      entries:["index.js"],             //frontend entry files
      external:[],                      //frontend esbuild external libraries
      plugins:[],                       //frontend esbuild plugins
      loader:{},                        //frontend esbuild loader
      io:{},                            //frontend default io config
      info:{},                          //variables accessible only at frontend via import info from "@randajan/simple-app/info"
    }
  }
)

After run will be generated necessary file structure.

Requirements

...
    "app-root-path": "^3.0.0",
    "chalk": "^5.2.0",
    "chokidar": "^3.5.3",
    "esbuild": "^0.14.28",
    "esbuild-node-externals": "^1.7.0",
    "express": "^4.17.3",
    "fs-extra": "^10.0.0",
    "open": "^8.4.0",
    "socket.io": "^4.4.1",
    "socket.io-client": "^4.4.1"
...

Backend

Prepared servers:

  • @randajan/simple-app/be/express
  • @randajan/simple-app/be/koa

Or you can implement your own

  • @randajan/simple-app/be

Happy hacking

License

MIT © randajan

3.1.5

11 months ago

3.1.3

12 months ago

3.1.4

12 months ago

3.1.2

1 year ago

3.1.1

1 year ago

3.1.0

1 year ago

3.0.1

1 year ago

3.0.0

1 year ago

2.1.6

1 year ago

2.1.7

1 year ago

2.1.5

1 year ago

2.1.4

1 year ago

2.1.3

2 years ago

2.1.1-0

2 years ago

2.1.0-0

2 years ago

2.1.3-0

2 years ago

2.1.2-0

2 years ago

2.0.7

2 years ago

2.0.6

2 years ago

2.0.9

2 years ago

2.0.8

2 years ago

2.0.3

2 years ago

2.0.2

2 years ago

2.0.5

2 years ago

2.0.4

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.7.2

2 years ago

1.6.4

3 years ago

1.7.1

3 years ago

1.6.2

3 years ago

1.7.0

3 years ago

1.5.3

3 years ago

1.6.1

3 years ago

1.6.0

3 years ago

1.5.2

3 years ago

1.5.1

3 years ago

1.5.0

3 years ago

1.4.2

3 years ago

1.4.1

3 years ago

1.4.0

3 years ago

1.4.0-0

3 years ago

1.3.0

3 years ago

1.2.1-0

3 years ago

1.2.0-0

3 years ago

1.1.7-0

3 years ago

1.1.6-0

3 years ago

1.1.5-0

3 years ago

1.1.4-0

3 years ago

1.1.3

3 years ago

1.1.2

3 years ago

1.1.1

3 years ago

1.1.0

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago