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
- Host: GitHub
- URL: https://github.com/fullstackondemand/node.js
- Owner: fullstackondemand
- Created: 2025-01-03T11:50:14.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-02-06T19:50:27.000Z (over 1 year ago)
- Last Synced: 2025-02-06T20:35:07.581Z (over 1 year ago)
- Topics: gulp, nodejs, sass, tailwindcss, typescript
- Language: SCSS
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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**.