Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hapi-ts-scaffold

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hapi-ts-scaffold

Hapi Typescript scaffold project

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

hapi-ts-scaffold

Hapi Typescript scaffold project

npm version Build Status

List of features available in this project

  • Generate Hapi typescript starter project
  • Generate independent controller with route (GET/POST/PUT/DELETE)
  • Pre-defined gulp task to compile and run server.
Work in Progress
  • Entity creation for Model
  • Joi validation for API
  • Swagger documentaion integration

Contribution

Possible ways to contribute this project

  • Raising issues
  • Writing unit test cases
  • Developing Work in Progress items

For any queries reach my email ashokjp93@gmail.com

Steps to kickstart with hapi typescript scaffold

1.) Install hapi-ts-scaffold globally

npm install -g hapi-ts-scaffold 

2.) To generate new project use the following command

// hapi-ts-scaffold <project-name>
ht create helloWorld

3.) To create new module, navigate to root folder helloWorld


cd helloWorld

// hapi-ts-scaffold -m <module-name>
ht -m user

Generated folder structure above executed command

----helloWorld
|   gulpfile.js
|   package.json
|   tsconfig.json
|   tslint.json
\---app
    |   config.ts
    |   server.ts  
    \---modules
        +---helpers
        |       Logger.ts
        \---helloWorld
                HelloWorldController.ts
                HelloWorldRoute.ts
        \---user
                UserController.ts
                UserRoute.ts

4.) Npm install to install all required modules

npm install

5.) To run the application

npm start

6.) Application will be running on following port

http://0.0.0.0:3000

Keywords

FAQs

Package last updated on 26 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc