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
Grunt
Search
Rodrigo Braga
August 16, 2013
Programming
0
170
Grunt
Introdução ao Grunt
Rodrigo Braga
August 16, 2013
Tweet
Share
More Decks by Rodrigo Braga
See All by Rodrigo Braga
ISPM Developer Team
rbraga
0
52
Docker
rbraga
0
210
Domain Driven Design
rbraga
2
230
Other Decks in Programming
See All in Programming
Cache Me If You Can
ryunen344
2
6.1k
議事録の要点整理を自動化! サーバレス Bot 構築術
penpeen
3
370
概念モデル→論理モデルで気をつけていること
sunnyone
3
320
プログラミングどうやる? ~テスト駆動開発から学ぶ達人の型~
a_okui
0
170
チームのテスト力を鍛える
goyoki
3
1k
フロントエンド開発に役立つクライアントプログラム共通のノウハウ / Universal client-side programming best practices for frontend development
nrslib
3
410
麻雀点数計算問題生成タスクから学ぶ Single Agentの限界と Agentic Workflowの底力
po3rin
3
640
ProxyによるWindow間RPC機構の構築
syumai
3
1.2k
Flutter with Dart MCP: All You Need - 박제창 2025 I/O Extended Busan
itsmedreamwalker
0
160
Server Less Code More - コードを書かない時代に生きるサーバーレスデザイン / server-less-code-more
gawa
3
560
半自動E2Eで手っ取り早くリグレッションテストを効率化しよう
beryu
3
510
請來的 AI Agent 同事們在寫程式時,怎麼用 pytest 去除各種幻想與盲點
keitheis
0
140
Featured
See All Featured
For a Future-Friendly Web
brad_frost
180
9.9k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
9
820
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
113
20k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.1k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
33
2.4k
A better future with KSS
kneath
239
17k
Visualization
eitanlees
148
16k
Bash Introduction
62gerente
615
210k
Six Lessons from altMBA
skipperchong
28
4k
Faster Mobile Websites
deanohume
309
31k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
The Language of Interfaces
destraynor
161
25k
Transcript
grunt the javascript task runner rodrigo braga rbraga.com meia-atacante na
ISPM
agenda o que veremos? • o que é • motivações
• introdução • configuração • um pouco de prática
grunt? grunt is a task-based command line build tool for
javascript projects
motivações? código aberto, comunidade ativa, fácil, milhões de plugins...
como começar? vamos precisar do nodejs e npm
instalando o cli npm install -g grunt-cli precisamos instalar (globalmente)
o command line interface,vulgo cli isto colocará o grunt no seu system path * instalar o cli não significa instalar o grunt (ainda)
e o grunt npm install grunt –save-dev isto irá instalar
a última versão do grunt na pasta do seu projeto, e incluí-lo na seção devDependencies no package.json
e então ação depois de configurar o package.json e Gruntfile.js
é claro
se você virar no beco certo em Grunt City... pode
encontrar um plugin para qualquer coisa.