Skip to content

Latest commit

 

History

History
64 lines (51 loc) · 1.86 KB

README.md

File metadata and controls

64 lines (51 loc) · 1.86 KB

Pragmatic Nodejs

This is the part of my Pragmatic Python book series. Pragmatic book series are opinionated practical mini projects, tutorials, development environment setup and project structure.

Mini projects are more the toy examples and can be thought of small tools that can be extended to fit into the production grade pipeline.

Project Directory Structure

└── src
│   ├── app
│   │   ├── api
│   │   ├── config
│   │   ├── db
│   │   ├── dnn
│   │   │   └── gpuconfig
│   │   ├── entities
│   │   ├── routes
│   │   ├── schemas
│   │   ├── _site
│   │   │   └── images
│   │   ├── templates
│   │   │   └── src
│   │   ├── tests
│   │   └── utils
│   └── data
└──tests
    └── config

Examples

Servers

  1. Hello World
bash start-hello.sh
  1. Streaming - video, images, files, webcam
bash start-stream.sh

References