generator-ng-fullstack

授权协议 MIT License
开发语言 JavaScript
所属分类 Web应用开发、 常用JavaScript包
软件类型 开源软件
地区 不详
投 递 者 娄浩荡
操作系统 跨平台
开源组织
适用人群 未知
 软件概览

logo

ng-fullstack is a yeoman generator that allows you to rapidly get started with prototyping web applications with the newest technologies available. It allows you to choose between a client app, a server app or a fullstack app. All of them simple to extend and powerful to use.

Getting Started

$ npm install -g generator-ng-fullstack

Then, to create a new app, simply run:

$ yo ng-fullstack

A few questions will be shown, make sure you answer them and, there you go! Now you have the boilerplate app working.

Type less, create more

By installing ngf you'll speed up your development by using the official generator-ng-fullstack alias. It shortens significantly the amount of stuff you type.

$ npm install -g ngf

Wiki

In the wiki you'll find: pro tips, the sub-generators, FAQ, Troubleshooting, walkthroughs and much more.

Chat

Do you have a doubt, want to talk about something cool or just want to chat? Join us on the gitter chat ��

Contributing

Pull requests, helping others solving issues, improving the Wiki, among other tasks, are all valid, and more than welcome, contributions - don't hesitate.

Development

License

MIT

  • Generator() 阮老师的介绍:Generator 函数有多种理解角度。语法上,首先可以把它理解成,Generator 函数是一个状态机,封装了多个内部状态。 红宝书(第四版):生成器是 ECMAScript 6 新增的一个极为灵活的结构,拥有在一个函数块内暂停和恢复代码执行的能力。这种新能力具有深远的影响,比如,使用生成器可以自定义迭代器和实现协程。 大白话:比较自由的异步函数; 一、定义

 相关资料
  • yeoman generator-ng-panes 前端开发神器 基于generator-angular再开发,加入了许多新功能。 新加入的功能 可选多种不同的界面库: Bootstrap, Bootstrap-Sass, Foundation, Semantic-UI , Angular-Material, Materialize, UIKit and AmazeUI. 当angular 2进入

  • 常规函数只会返回一个单一值(或者不返回任何值)。 而 Generator 可以按需一个接一个地返回(“yield”)多个值。它们可与 iterable 完美配合使用,从而可以轻松地创建数据流。 Generator 函数 要创建一个 generator,我们需要一个特殊的语法结构:function*,即所谓的 “generator function”。 它看起来像这样: function* gene

  • generator(生成器)是ES6标准引入的新的数据类型。一个generator看上去像一个函数,但可以返回多次。 ES6定义generator标准的哥们借鉴了Python的generator的概念和语法,如果你对Python的generator很熟悉,那么ES6的generator就是小菜一碟了。如果你对Python还不熟,赶快恶补Python教程!。 我们先复习函数的概念。一个函数是一段完整

  • Express' application generator. Installation $ npm install -g express-generator Quick Start The quickest way to get started with express is to utilize the executable express(1) to generate an applicat

  • The Angular Full-Stack Generator Yeoman generator for creating MEAN/SEAN stack applications, using ES2017, MongoDB/SQL, Express, Angular, and Node - lets you quickly set up a project following best pr

  • Generator并发 正如我们在第一章和本章早先讨论过的,另个同时运行的“进程”可以协作地穿插它们的操作,而且许多时候这可以产生非常强大的异步表达式。 坦白地说,我们前面关于多个generator并发穿插的例子,展示了这真的容易让人糊涂。但我们也受到了启发,有些地方这种能力十分有用。 回想我们在第一章中看过的场景,两个不同但同时的Ajax应答处理需要互相协调,来确保数据通信不是竟合状态。我们这样