New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

front-setting

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

front-setting

font-end setting

latest
npmnpm
Version
0.0.11
Version published
Maintainers
1
Created
Source

웹퍼블리싱 작업환경 설정

source/ 에서 작업을 하면 dist/ 으로 산출물이 만들어집니다.

폴더구조

┌── dist/      (산출물폴더 : 자동생성)
│
├── source/    (작업폴더)
│   ├── js/
│   │   ├── ui
│   │   │    ├── test1.js
│   │   │    └── test2.js
│   │   │
│   │   ├── bootstrap
│   │   │    ├── test1.js
│   │   │    ├── test1.js
│   │   │    └── test2.js
│   │   │
│   │   └── vender/ (bower에 의해서 설치되는 파일(직접수정x))
│   │        ├── affix.js
│   │        ├── alert.js
│   │        ├── button.js
│   │        ├── collapse.js
│   │        ├── :
│   │        └── :
│   │
│   ├── less/
│   │   ├── ui
│   │   │    ├── test1.less
│   │   │    └── test2.less
│   │   │
│   │   └── bootstrap
│   │        ├── test1.less
│   │        ├── test1.less
│   │        └── test2.less
│   │
│   ├── images/
│   │
│   ├── html/ (html 페이지 작성)
│   │   └── index.html
│   │
│   ├── html-status/ (현황판)
│   │
│   └── html-guide/ (가이드)
│
└ node_modules (grunt로 자동화 하기 위해서 필요한 node 패키지들)

요구사항 설치

  • 버전관리 : git설치
  • node.js : http://nodejs.org/ 설치파일 다운후 설치
  • bower : 윈도우키실행cmdnpm install bower -g
  • grunt : 윈도우키실행cmdnpm install grunt-cli -g
  • front-setting : 윈도우키실행cmdnpm install front-setting -g

적용하기

c:\project\test 이라는 프로젝트를 시작할 경우로 설명

  • 윈도우키실행cmd > 프로젝트 폴더로 이동 cd c:\project\test

  • npm install front-setting

  • front-setting : 생성된 Gruntfile.js, bower.json, .bowerrc 으로 프로젝트 세팅

  • npm install

  • grunt config : 코딩환경 구축

  • grunt : 코딩 서버 실행 (종료시 ctrl+C)

FAQs

Package last updated on 27 Dec 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts