Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up

le2xx/starter-kit-with-ts

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frontend Starter Kit

Description

This is a startup project template for developing a web interface. There is no jQuery in it, only Vanilla JS,only hardcore! If you need jQuery, then you can add it separately as bootstrap and other modules. This templateincludes a number of useful modules in my opinion that automate part of the work.

This special version with TypeScript and SCSS.

Plugins

nodejswebpackbabelpugstylusautoprefixer

Start project

Clone repository

git clone https://github.com/le2xx/frontend-starter-kit.git new-projectcd new-project

Install modules

npm install

Start template

npm start

Building project

npm build

Create new component

npm run new-block name-block

GitHub page deploy

npm run gh-deploy

File and folder structure

├── src/                                    #│   ├── app/                                # │   │   ├── components/                     # Components directory│   │   │   ├── layout/                     #│   │   │   │   └── layout.pug              # │   │   │   └── component-name/             # Component directory  │   │   │       ├── component-name.js       # JS file component  │   │   │       ├── component-name.pug      # Pug file component  │   │   │       └── component-name.styl     # Styl file component│   │   └── pages/                          #│   │       └── index.pug                   # Index page│   ├── assets/                             #│   │   ├── favicons/                       # Favicons directory│   │   ├── fonts/                          # Directory for font files│   │   └── images/                         # Directory for image files│   ├── styles/                             #│   │   ├── base.styl                       # Base stylus file for include other stylus files│   │   ├── fonts.styl                      # Stylus file for include fonts  │   │   ├── mixins.styl                     # Stylus file for making replayable styles│   │   └── variables.styl                  # Stylus file for making variables│   ├── main.ts                             # Main JavaScript file│   └── polyfills.js                        #├── .gitignore                              #├── .stylintrc                              #├── new-block.ts                            # Script for making new components├── package.json                            #├── README.md                               #└── webpack.conf.js                         # Webpack config file

Todo

  • Add automated testing tools
  • Possible to add TypeScript

[8]ページ先頭

©2009-2025 Movatter.jp