Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Beyond ng new
Search
Ciro Nunes
June 22, 2018
Programming
2
200
Beyond ng new
Use lesser known features of the Angular CLI to unlock the ultimate productivity
Ciro Nunes
June 22, 2018
Tweet
Share
More Decks by Ciro Nunes
See All by Ciro Nunes
Rust Front-end with Yew
cironunes
0
45
Type safe CSS with Reason
cironunes
0
100
What I've learned building automated docs for Ansarada's design system
cironunes
0
65
Animate your Angular apps
cironunes
0
400
Sweet Angular, good forms never felt so good
cironunes
0
64
Sweet Angular, good forms never felt so good
cironunes
0
280
Progressive Angular apps
cironunes
3
880
Angular: Um framework. Mobile & desktop.
cironunes
1
580
Firebase & Angular
cironunes
0
290
Other Decks in Programming
See All in Programming
The Weight of Data: Rethinking Cloud-Native Systems for the Age of AI
hollycummins
0
130
リアクティブシステムの変遷から理解するalien-signals / Learning alien-signals from the evolution of reactive systems
yamanoku
2
1.1k
令和トラベルにおけるコンテンツ生成AIアプリケーション開発の実践
ippo012
1
270
なぜselectはselectではないのか
taiyow
2
310
Modern Angular:Renovation for Your Applications @angularDays 2025 Munich
manfredsteyer
PRO
0
140
Go1.24で testing.B.Loopが爆誕
kuro_kurorrr
0
170
パスキーのすべて / 20250324 iddance Lesson.5
kuralab
0
140
20250326_生成AIによる_レビュー承認システムの実現.pdf
takahiromatsui
17
5.7k
AIコードエディタの基盤となるLLMのFlutter性能評価
alquist4121
0
130
PHPでお金を扱う時、終わりのない 謎の1円調査の旅にでなくて済む方法
nakka
4
1.4k
生産性アップのためのAI個人活用
kunoyasu
0
660
爆速スッキリ! Rspack 移行の成果と道のり - Muddy Web #11
dora1998
1
160
Featured
See All Featured
Mobile First: as difficult as doing things right
swwweet
223
9.5k
Code Review Best Practice
trishagee
67
18k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
Writing Fast Ruby
sferik
628
61k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
12k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
Facilitating Awesome Meetings
lara
53
6.3k
BBQ
matthewcrist
88
9.5k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
177
52k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
7.1k
Navigating Team Friction
lara
184
15k
Transcript
beyond ngnew Go http://cnun.es/beyond-ngnew
Ciro Nunes Brought to you by @cironunesdev cironunes.com
Ciro Nunes Brought to you by @cironunesdev cironunes.com
Ciro Nunes Brought to you by @cironunesdev cironunes.com
None
The CLI
I ❤ CLI
Agenda Basics 1 Unlock the ultimate productivity 2 Tips &
tricks 3
Agenda Basics 1 Unlock the ultimate productivity 2 Tips &
tricks 3
" Start # projects
ng new gdg-devfest --routing --prefix gdg Start new projects Include
routing module and prefix all components with gdg-
--dry-run (-d) Pro tip! Do not modify the file system
$ Add capabilities
ng add @angular/material Add libraries
ng add @angular/material Add libraries Install the official material packages
and schematics to generate material components
ng add @angular/material Add libraries Install the official material packages
and schematics to generate material components ng g @angular/material:dashboard --name my-dash
ng add @angular/material Add libraries Install the official material packages
and schematics to generate material components ng g @angular/material:dashboard --name my-dash Generate the dashboard component using @angular/material schematics
ng add @angular/pwa Add PWA features
ng add @angular/pwa Add PWA features Get 100/100 PWA score
in lighthouse
% Keep your & dependencies ☝ up-to-date
ng update --all --next -d Update packages (
ng update --all --next -d Update packages ( All packages
to latest versions including betas and RCS
) Scaffold anything
ng generate (g) guard (g) appShell component (c) directive (d)
service (c) … Scaffold anything! )
ng generate universal --client-project ang-conf Server-side rendering
ng generate universal --client-project ang-conf Scaffold server-side Angular with Universal
Server-side rendering
ng generate library tooltip Scaffold libraries &
ng generate library tooltip Scaffold libraries & Scaffold libraries using
ng-packgr
Create libraries for your components Pro tip! It’s a good
way to check if their APIs are well designed
ng xi18n i18n
ng xi18n i18n Extract text marked with the i18n pipe
into a translation file
ng eject Gain more control
ng eject Gain more control When you need more customisation
or just want to learn more
OnCe you eject you can ’ t go back!
Memorise the shortcuts, type less! Usually you just have to
type the first letter of a command
ng n new ng g generate ng s serve Shortcuts
Ask for help
ng help or just ng Need help?
None
ng g universal --help Need help per command?
ng g universal --help Need help per command? Help info
for the universal schematic
Learn from the docs!
ng doc term in the API -s everywhere Search
None
Play around, have fun
Agenda Basics 1 Unlock the ultimate productivity 2 Tips &
tricks 3
Share Learn Create
Schematics
Apply transformations to your project
Just like the CLI does
None
Rules
Rules Trees
Rules Takes a tree and returns a tree Trees
Rules Takes a tree and returns a tree Trees Existing
files + stage area
Modifies trees instead of the filesystem directly
Dry runs Reusability Extensibility That allows for
Creating schematics
npm i -g @angular-devkit/schematics-cli Install it
schematics blank --name=my-component Generate a blank schematic
Rules
z import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics'; export
function myComponent(options: any): Rule { return (tree: Tree, _context: SchematicContext) => { return tree; }; }
z import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics'; export
function myComponent(options: any): Rule { return (tree: Tree, _context: SchematicContext) => { return tree; }; }
z import { Rule, SchematicContext, Tree } from '@angular-devkit/schematics'; export
function myComponent(options: any): Rule { return (tree: Tree, _context: SchematicContext) => { tree.create(options.name || 'hello', 'world'); return tree; }; } Create and modify files
z import { Rule, SchematicContext, Tree, chain, externalSchematic } from
'@angular-devkit/schematics'; export function myComponent(options: any): Rule { return (tree: Tree, _context: SchematicContext) => { tree.create(options.name || 'hello', 'world'); return chain(tree, externalSchematic(...)); }; } Chain external schematics
Collections
z { "$schema": “.../@angular-devkit/schematics/ collection-schema.json", "schematics": { "my-component": { "description":
"A blank schematic.", "factory": "./my-component/index#myComponent" } } } Schematics collection collection.json
npm run build Build and test it schematics .:my-component --name=test
--dry-run=false
node --inspect-brk $(which schematics) .:myComponent --name=test Debug it
ng new myapp Use it with the CLI npm link
$PATH_TO_my-component ng g my-component:my-component someName
* Remember to publish on NPM ⚓ when you’re happy
with the results!
Learn more, for free! https://leanpub.com/angular-schematics/read_full
Agenda Basics 1 Unlock the ultimate productivity 2 Tips &
tricks 3
Now the , of the -
None
Monorepo structure enterprise ready! .
None
None
/ Practice the commands, use dry runs 0 Use, create
and share schematics 1 Use the help command and the docs Takeaways 2 Embrace the ecosystem
Stay curious, explore the opportunities, use your creativity!
Thank you! I hope you enjoyed it @cironunesdev