Giter VIP home page Giter VIP logo

express-starter's Introduction

Express + Fern starter repo

This repo is a starter repo for building an Express server using Fern.

Fern is an open source format for defining REST APIs. Fern makes it easy to:

  1. Define your API
  2. Implement your API on the backend
  3. Consume your API on the frontend

Quick start

Step 1: Fork this repo

Step 2: Clone your fork

Step 3: Generate code

Most of the code for this server is auto-generated by Fern!

In a terminal, run:

npm install -g fern-api
fern generate

Step 4: Run the backend

yarn install
yarn dev

Now you can cURL the server!

curl 'http://localhost:8080/movies/goodwill-hunting'

Development

To get started, open a VSCode window for the root of this repo:

code .

Install the recommended extensions. These will give you a better experience in the IDE.

Install dependencies:

yarn install

Run the server:

yarn start

You can edit the server code, and the server will automatically reload.

Auto-generated server code

Nearly all of the server code is generated by Fern when you run fern generate. The generated code lives in src/api/generated.

In addition to saving you time, the auto-generated code gives you compile-time safety that your API is implemented correctly. For example, if you forget to define the getMovie endpoint, you'll get a compile error:

backend mypy error

Changing the API

The API is defined using Fern. The definition lives in the fern/ directory. You can edit these YAML files to update the API. Check out the docs to read more about defining APIs.

Most of the server code in this repo is automatically generated by Fern. You can regenerate the code using the Fern CLI:

npm install -g fern
fern generate

This will output newly generated code to src/api/generated.

When you change your API, you'll get compile errors if you're not implementing the API correctly.

Issues & contributing

If you run into any problems while using this ticket, plesae file an issue. Of course, PRs are welcome and encouraged!

express-starter's People

Contributors

zachkirsch avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.