An open API service indexing awesome lists of open source software.

https://github.com/fullstackondemand/node.js

Create Node Gulp Application
https://github.com/fullstackondemand/node.js

gulp nodejs sass tailwindcss typescript

Last synced: 3 months ago
JSON representation

Create Node Gulp Application

Awesome Lists containing this project

README

          

# Create Node Application

### Installation

```bash
npx degit fullstackondemand/node.js
```
after clone native folder
```bash
cd
npm install
```

### Used Packages

> `node.js`, `sass`, `tailwindcss`, `typescript`, `gulp`

## Folder Structure

```
├─── public
│ ├─── favicon.ico # default favicon
│ ├─── assets # static assets (images, videos and favicons)
│ └─── data # all Json files

├─── src
│ ├─── app
│ │ ├─── [slug] # url page folder
│ │ │ └─── index.html # page file
│ │ │
│ │ ├─── index.html # home page file
│ │ ├─── main.ts # main typescript file
│ │ └─── style.scss # global css file
│ │
│ └─── scss
│ ├─── _base.scss # base css (heading and tags)
│ ├─── _components.scss # components css (card, container and other class)
│ └─── _utilities.scss # extra common css (box-shadow, animation and other class)

├─── robots.txt # google file
└─── README.md
```

### Get Started Command :-

1. `npm run gulp` for start **default**.
2. `npm run build` for start **production**.
3. `npm run dev` for start **watch**.