I used the boilerplate/typescript project as a starting point. This project fetches and renders books that I'm defining in a Contentful CMS that I created.
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			108 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			108 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
let
 | 
						|
  pkgs = import <nixpkgs> {};
 | 
						|
in pkgs.mkShell {
 | 
						|
  buildInputs = with pkgs; [
 | 
						|
    nodejs
 | 
						|
    yarn
 | 
						|
  ];
 | 
						|
}
 |