Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

frontizer

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

frontizer

Effective frontend development tool

  • 0.1.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Frontizer

Node.js based tool for effective frontend development.

Includes stylus, browserify, es6, jade for now. Future builds will allow you to use your own modules.

Usage

  1. Install the module globally: npm i -g frontizer

  2. Create a folder for your new project and enter it.

  3. Initialize your new project with frontizer init than run it with frontizer start.

Type frontizer to see help.

Assets

Assets folder contains all statics and source files for your project. Published asset files are placed inside assets/compiled directory.

Client JavaScript and ECMAScript 6

Either ordinary JavaScript or ECMAScript 6 can be used simultaneously. All files with .es6 extension will be precompiled by Babel.

Views

Views folder contains your templates. Each file here represents it's own route which is the same as a file name. The one exception is home.jade which represents a home page.

View based routing examples:

  • home.js - /
  • foo/bar.jade - /foo/bar
  • foo/home.jade - /foo

Predefined variables

  • __css contains ready to use tags with compiled css links
  • __js same for JavaScript
  • __livereload contains link to a JavaScript file necessary for livereloading

Helper functions

  • range([from], to) - generates an array of numbers from first parameter to second; first parameter can be omitted so it will be equal to 1 by default. Examples:
    • range(3, 5) -> [3, 4, 5]
    • range(5) -> [1, 2, 3, 4, 5]
  • static('file-name') - prepends static assets root to the file name
    • static('example.jpg') -> '/assets/static/example.jpg'
  • linkTo('view-name') - returns a proper link to the view (there are different for static build and application)
    • linkTo('home') -> '/', static builds: 'home.html'
    • linkTo('my/page') -> '/my/page', static builds: 'my.page.html'

Data

You can provide any data to your views by creating data files. They will be fetched in the same way as view. exports object fields will be variables in views.

Data shared with corresponding view also includes data from upper levels home files. For example, route /foo/bar will uses views/foo/bar.jade view and tries to fetch and merge files:

  1. data/home.js
  2. data/foo.js
  3. data/foo/bar.js

Obviously, data/home.js file will be fetched on every route so you can use it to provide global data and defaults.

Any duplicated data field names will be overwritten by lower level data.

NPM modules

  • Request handling: Express
  • Templating: Jade
  • Styles: Stylus with kouto-swiss
  • Client JavaScript: Browserify, Watchify, Babelify with ES2015 preset
  • Utility: Livereload, Serve-favicon, jstransformer-stylus, ncp

Keywords

FAQs

Package last updated on 21 Apr 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc