Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/maxhu08/create-neutrino-app

🌌 lightweight template for creating a website with module bundling, hmr, typescript, tailwindcss & sass
https://github.com/maxhu08/create-neutrino-app

parcel template

Last synced: 23 days ago
JSON representation

🌌 lightweight template for creating a website with module bundling, hmr, typescript, tailwindcss & sass

Awesome Lists containing this project

README

        

# create-neutrino-app

🌌 lightweight template for creating a website with module bundling, hmr, typescript, tailwindcss & sass

this template uses parcel

alos this is very easy to deploy, here is a [demo](https://neutrino-app.vercel.app/) on vercel

this template is pretty minimal and lightweight here is structure of template

```
neutrino-template
├── src
│ ├── scripts
│ │ ├── hello.ts
│ │ └── index.ts
│ ├── styles
│ │ └── styles.css
│ ├── index.html
│ └── icon.svg
│
├── .gitignore
├── .postcssrc
├── package.json
├── README.md
├── tailwind.config.js
└── tsconfig.json
```

### getting started

```bash
# clone template
npx create-neutrino-app my-app

# cd
cd my-app

# installing dependecies
npm install

# start server
npm run dev
```