Example article
šŸ¤—

Example article

Author
Published
March 7, 2018
Tags
OSS
Node.js
The best techniques for sharing code snippets and screencasts that will help propel your open source projects to success.
Ā 

Intro

Creating your own open source projects can be extremely rewarding, but it can be hard to break through the noise and get other developers to trust and use your software. You can gain a lot of ground by followingĀ common best practicesĀ like including solid documentation, adding unit tests, integrating with a CI/CD oriented towards open-source projects (likeĀ travis-ciĀ orĀ circle-ci), and enforcing consistent style conventions.
One of the most effective and easiest ways Iā€™ve found to make open source projects really stand out from the crowd isĀ adding quality screenshots or animated demos. Whenever I see this attention to detail, not only does it prove to me that the author cares about the project, but itā€™s the absolute fastest way to convey what the project actually does.
Animation Credit:Ā CSS-only coding animationĀ byĀ ChrisĀ Dermody
Animation Credit:Ā CSS-only coding animationĀ byĀ ChrisĀ Dermody
A picture is worth a thousand words.ā€Šā€”ā€ŠCliche saying thatā€™s totes relevant
Including quality screenshots and demos is becoming an increasingly important part of what Iā€™d callĀ Developer UX, that is the flow a prospective developer takes from considering adding your project as a dependency all the way through successful integration and future maintenance.
Towards that end, weā€™ll be looking at three common use cases for improving the developer UX of your open source projects with media:
  • Static code snippets (images)
  • Animated code demos (GIFs or animated SVGs)
  • Project screencasts (videos)

Static Code Snippets

Sharing small bits of static code is definitely the most common and important use case on this list. Every open source projectā€™s readme should include some easily parseableĀ example usageĀ snippet, so letā€™s start there.

GitHub-Flavored Markdown Snippets

At the easiest end of the spectrum, GitHub allowsĀ syntax highlightingĀ in markdown code snippets. Hopefully, this style of embedding is familiar to you, and if not, I would definitely recommend starting here.
const pMap = require('p-map') const got = require('got') const sites = [ getWebsiteFromUsername('sindresorhus'), //=> Promise 'ava.li', 'todomvc.com', 'github.com' ] const mapper = el => got.head(el).then(res => res.requestUrl) pMap(sites, mapper, { concurrency: 2 }) .then(result => { console.log(result) //=> ['http://sindresorhus.com/', 'http://ava.li/', 'http://todomvc.com/', 'http://github.com/'] })
Ā 

GitHub Gists

The code snippet above also provides an example of an extremely popular way of sharing static code snippets viaĀ GitHub Gists, which have the following advantages:
  • Linkable
  • Support versioning
  • Support discussion via comments
  • Syntax highlighting

Carbon

Markdown snippets and GitHub gists are both useful, but if you really want to make your code pop, then look no further thanĀ Carbon.
Image Credit:Ā Carbon
Image Credit:Ā Carbon
Carbon is a very popular open source project that allows you to easily create aesthetically pleasing code screenshots, along with a plethora of customization options and community plugins. Itā€™s a great choice for making a hero image standout in your readme, increasing engagement on social media, or for writing engineering-related blog posts like this one šŸ˜›.

Animated Code Demos

Including a high quality, inline demo that quickly demonstrates your projectā€™s core use case is the single most important suggestion I have to give.
There are a ton of different ways to go about creating these types of demos, however, so Iā€™d like to discuss what Iā€™ve found to be the best approach here.
AsciinemaĀ is a free tool that lets you record and share your terminal sessions, the right way.
AsciinemaĀ provides a lightweight, purely text-based approach to terminal recording, which allows you to make lossless recordings that can then be shared directly or rendered to animated SVG, animated GIF, or video. It surprised me just how many popular open source projects on GitHub make use of Asciinemaā€Šā€”ā€ŠI would highly recommend checking it out.
Example Asciinema screencast converted to a GIF (credit:Ā create-react-library) Note that the quality of this embedded GIF is much lower than the animated SVG in the linkedĀ readmeĀ as discussed below.
Example Asciinema screencast converted to a GIF (credit:Ā create-react-library) Note that the quality of this embedded GIF is much lower than the animated SVG in the linkedĀ readmeĀ as discussed below.

Animated SVG or GIFs?

We all know GIFs are a horribly inefficient, lossy format, but letā€™s dig a little deeper into this particular use case.
Compare the above embedded screencast gif to the animated SVG of the same screencast from theĀ readme. Itā€™s difficult to embed an inline comparison side-by-side, but the animated SVG isĀ significantly sharper and smaller, coming in at 73kb vs 4.4MB for the lower quality GIF.
Why is this even a discussion then? Well, you canā€™t exactly include custom HTML in a Medium blog post, now can you? And for that matter, there are a lot of places where using custom animated SVGs wonā€™t fly, and for the foreseeable future, GIFs will live on as a fallback for those use cases. But open source authors, please consider using animated SVG versus GIFs for your GitHub projects!
There are some very popular open source projects on GitHub that have started using more efficient animated SVGs for their demos, such asĀ create-react-app, but in general, youā€™ll find GIFs to be much more common.
Here's a few examples of using the excellent svg-term-cli to generate our lossless animated SVG.
# generate animated SVG svg-term --cast 'fxdtpprue51QZkeViQurqPg8V' --out demo.svg --window --width=80 --height=24 --term=iterm2 --profile=Snazzy # generate single frame SVG at 20 seconds into the screencast svg-term --cast 'fxdtpprue51QZkeViQurqPg8V' --out screenshot.svg --window --width=80 --height=24 --term=iterm2 --profile=Snazzy --at 20000
Itā€™s important to note that when discussing animated SVGs, weā€™re really talking about embedding an HTML snippet into GitHub-flavored markdown that links to an SVG file encoded with each frame as an SVG group and the animation defined via CSS keyframes (example SVG source).
<p align="center"> <img width="600" src="https://cdn.rawgit.com/transitive-bullshit/create-react-library/master/media/demo.svg"> </p>
Insert this HTML snippet into any GitHub-flavored markdown file to embed the linked animated SVG with optimal sharpness and low size overhead compared with a comparable GIF.
For reference, here is the screencast fromĀ create-react-libraryĀ weā€™ve been using as an example in several different formats:

Capturing and Optimizing GIFs

Asciinema is great for terminal-based recording, but what if you want to record a UI component or website? Well, my first and foremost answer here is to always include a usable demo if possible alongside your project, especially if itā€™s a frontend web project. Itā€™s really easy to get started with GitHubĀ Pageā€™sĀ free hosting!
If you do want to include a GIF, Iā€™d recommend using eitherĀ GIPHY CaptureĀ orĀ KapĀ to record your screen and output a GIF. Alternatively, if you have a video recorded from another source, Iā€™d recommend usingĀ GifskiĀ to convert the video to an as-optimized-as-possible GIF for ease of embedding.
<!-- html snippet customizing embedded gif --> <img src="https://cdn.rawgit.com/terkelg/prompts/master/media/number.gif" alt="example prompt" width="499" height="103" /> <!-- raw markdown can also be used to ambed a gif --> ![](https://cdn.rawgit.com/terkelg/prompts/master/media/number.gif)
Ā 
Quality demo GIF embedded in readme using the snippet above. (image credit:Ā promptsĀ byĀ terkelg)
Quality demo GIF embedded in readme using the snippet above. (image credit:Ā promptsĀ byĀ terkelg)

Project Screencasts

If your project is becoming more involved or youā€™re launching your project to a wider audience, including walkthrough video(s) can really help with user onboarding and support.

Screenflow

My go-to screen recording software isĀ ScreenFlow, which is not cheap at $129, but gives you a lot of powerful, quality tools for the price, including precise rectangular screen recording, video and audio track mixing, audio voiceovers, transition effects, and more. This type of screencast is quite a bit more complicated than the screenshots and terminal session recordings we were looking at earlier.

Conclusion

Developer UX is important for promoting and marketing your work, which can in turn lead to very real consequences, as getting noticed for your open source contributions is definitely one of the best ways to gain notoriety and land big job opportunities as a software engineer.
I hope some of the techniques Iā€™ve covered help you to promote your open source projects. If youā€™ve found this article useful and end up creating a snazzy screenshot or animated demo, add a comment linking to your project and let me know!
And as always, donā€™t forget to spread the ā¤ļøā€¦ in the form of beautiful coding demos, of course!
Ā 

Ā 
šŸ‘‰
Follow me on twitter for more awesome stuff like this @transitive_bs