Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/maxhu08/create-neutrino-app
- Owner: maxhu08
- Created: 2024-02-04T03:10:12.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-02-11T21:47:49.000Z (11 months ago)
- Last Synced: 2024-02-12T16:27:56.357Z (11 months ago)
- Topics: parcel, template
- Language: JavaScript
- Homepage: https://neutrino-app.vercel.app
- Size: 183 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```