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
Carton CPAN dependency manager
Search
Tatsuhiko Miyagawa
October 14, 2011
Technology
4
33k
Carton CPAN dependency manager
Tatsuhiko Miyagawa
October 14, 2011
Tweet
Share
More Decks by Tatsuhiko Miyagawa
See All by Tatsuhiko Miyagawa
Carmel at YAPC::EU 2015
miyagawa
0
550
Carton at London Perl Workshop 2013
miyagawa
0
270
Managing CPAN dependencies with Carton
miyagawa
0
340
What's new in Carton and cpanm at YAPC::Asia 2013
miyagawa
6
1.3k
Carton 1.0 at OSCON 2013
miyagawa
11
2.3k
cpanm 1.6 at OSDC.TW
miyagawa
6
1.3k
10 more things to be ripped off
miyagawa
7
1.4k
Ruby; Exported
miyagawa
1
1k
10 Years: LL, you and me
miyagawa
2
220
Other Decks in Technology
See All in Technology
Linux カーネルが支えるコンテナの仕組み / LF Japan Community Days 2025 Osaka
tenforward
1
120
What's new in OpenShift 4.20
redhatlivestreaming
0
100
組織改革から開発効率向上まで! - 成功事例から見えたAI活用のポイント - / 20251016 Tetsuharu Kokaki
shift_evolve
PRO
2
230
AI-Readyを目指した非構造化データのメダリオンアーキテクチャ
r_miura
1
280
ハノーファーメッセ2025で見た生成AI活用ユースケース.pdf
hamadakoji
0
410
知覚とデザイン
rinchoku
1
250
ヘンリー会社紹介資料(エンジニア向け) / company deck for engineer
henryofficial
0
330
AI時代におけるデータの重要性 ~データマネジメントの第一歩~
ryoichi_ota
0
710
OpenTelemetry が拡げる Gemini CLI の可観測性
phaya72
2
2k
CNCFの視点で捉えるPlatform Engineering - 最新動向と展望 / Platform Engineering from the CNCF Perspective
hhiroshell
0
140
AI時代、“平均値”ではいられない
uhyo
8
2.3k
Claude Code Subagents 再入門 ~cc-sddの実装で学んだこと~
gotalab555
10
17k
Featured
See All Featured
Become a Pro
speakerdeck
PRO
29
5.6k
A Tale of Four Properties
chriscoyier
161
23k
Testing 201, or: Great Expectations
jmmastey
45
7.7k
Code Review Best Practice
trishagee
72
19k
Speed Design
sergeychernyshev
32
1.2k
StorybookのUI Testing Handbookを読んだ
zakiyama
31
6.2k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
31
2.7k
GraphQLの誤解/rethinking-graphql
sonatard
73
11k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
9.7k
Building an army of robots
kneath
305
46k
Reflections from 52 weeks, 52 projects
jeffersonlam
353
21k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
140
34k
Transcript
Carton Tatsuhiko Miyagawa YAPC::Asia 2011 Tokyo Friday, October 14, 2011
Managing CPAN Dependencies Friday, October 14, 2011
Case Study: (Poor) Web Development Friday, October 14, 2011
You’re writing a new web app. You don’t wanna reinvent
wheels. Want to use as many CPAN deps. Friday, October 14, 2011
Fine. Get them from CPAN, install on your machine. Friday,
October 14, 2011
> cpanm Web::Framework installed LWP-‐5.912 installed Plack-‐0.9980 installed Web-‐Framework-‐1.20 >
cpanm JSON::Fast installed JSON-‐Fast-‐1.91 > cpanm MIME::Parser::XS installed MIME-‐Parser-‐XS-‐0.20 Friday, October 14, 2011
Test it... Friday, October 14, 2011
Works? Ship it! Friday, October 14, 2011
Deployment Set up new production servers. Install CPAN modules (until
the errors are gone) Friday, October 14, 2011
Few weeks later... Friday, October 14, 2011
Your website is popular! Need more web servers! Friday, October
14, 2011
Re-Deployment Set up new production servers. Install CPAN modules (until
the errors are gone) Friday, October 14, 2011
“Crap, Web::Framework has been updated to 1.4 and many APIs
have been changed or deprecated!” Friday, October 14, 2011
Rollback Log in to the old web server. Check Perl
module versions. Install them on the new server. Friday, October 14, 2011
“Crap, this author deleted the version 1.20 we want. Let’s
go to BackPAN...” Friday, October 14, 2011
“Crap, version 1.20 doesn’t actually work with the newer LWP
6 that we just installed! Have to downgrade this too...” Friday, October 14, 2011
and so on. Friday, October 14, 2011
What was wrong? Friday, October 14, 2011
• Dependency declaration • Isolated Perl environments • Version controls/history
• Dependency analysis • Repeatable deployments • etc. Friday, October 14, 2011
Many existing solutions MyCPAN, DPAN, CPAN::Mini::Inject, OrePAN, Shipwright Friday, October
14, 2011
None of those didn’t quite work for me. (Or I
haven’t even tried) Friday, October 14, 2011
So I wrote a new one. Friday, October 14, 2011
Carton https://github.com/miyagawa/carton Friday, October 14, 2011
Inspired by... Friday, October 14, 2011
Friday, October 14, 2011
• App-specific local environment • Fast and safe install •
Dep-tree analysis, including versions • Locking module versions • Easy Redeployment • Single-file, VCS friendly • Safe and easy rollback Friday, October 14, 2011
Local perl environment Using local::lib and cpanm -L Each app
has an isolated local library path Friday, October 14, 2011
Fast and safe install cpanm 1.5 Saves MYMETA.json and install
meta info Friday, October 14, 2011
Dep tree analysis Rebuild the dependency tree from meta info
Checks if anything is missing/superflous Friday, October 14, 2011
Locking versions Versions are saved in carton.lock including dependencies Friday,
October 14, 2011
Easy Redeployment Reinstall exactly the same set of modules on
another prod/development machines. Friday, October 14, 2011
Single-file, VCS friendly You can add carton.lock to git update
whenever you update modules Friday, October 14, 2011
Safe and easy rollback revert the lock file and redeploy
Friday, October 14, 2011
DEMO Friday, October 14, 2011
> cpanm Carton Friday, October 14, 2011
WARNING It is beta software, some features are missing or
not working correctly (yet). Friday, October 14, 2011
github.com/miyagawa/carton irc.perl.org #carton Friday, October 14, 2011
Questions? Friday, October 14, 2011
Thanks! twitter.com/miyagawa Friday, October 14, 2011