My Docs
DeploymentTrelloCalendar 🗓 Family Promise Roadmap
LAMBDA_LABS_Family_Promise
LAMBDA_LABS_Family_Promise
  • Home
  • navigation
    • Resume
    • My Notes:
    • NAVIGATION
    • Calendar
    • Youtube:
    • Roadmap:
    • TEAM MEMBERS
    • Running List Of Notes Links & Pertinent Info From Meetings
    • Trello
      • Github/Trello Integration
  • UX
    • UX_TOPICS
      • Action Items:
      • Accessibility
      • Figma Notes
        • Tables In Figma
        • Notes
        • Frames in Figma
        • Prototyping In Figma
        • More Notes
      • UX-Design
        • Facebook Graph API
      • Ant Design
        • ANT Components
          • Buttons
        • ANT DOCS
        • Application (Codesandbox)
      • Examples
      • How to add external URL links to your prototype
  • CANVAS
    • Interview
    • Design
      • What's Inclusive Design?
      • Accessibility
      • What are Design Systems?
    • Canvas
      • Career Readiness:
    • Notes
      • User Experience Design
      • User Research
      • Interaction Design
    • UX-Engineer
      • Accessibility
      • Patterns
      • Design Tools
      • UX Principles
      • Design Critiques
      • Product Review
      • Quiz
      • Seven Principles of Design
      • Other Articles
    • Labs
  • Front End
    • Frontend:
    • Redux
  • Back End
    • Backend:
      • API
  • Research
    • Research Navigation
      • Front End
      • Back End
      • UX
      • PTM
      • General
  • DS_API
    • Data Science API
  • ROLES
    • TEAM ROLES
      • Bryan Guner
  • Action Items
    • Trello
    • Maps
  • ARCHITECTURE
    • DNS
    • AWS
    • Heroku
  • Questions
    • From Previous Cohort
  • Standup Notes
    • Meeting Notes
      • Stakeholder Meeting 1
      • 9/29/2021
  • GitHub & Project Practice
    • GitHub
      • Github Guide
      • Github Actions:
      • Live Implementation
  • MISC
    • MISCELLANEOUS
      • Links
  • Background Information
    • Background Info
      • Swagger OPEN API SPECIFICATION
        • Swagger Docs (General)
      • GITHUB:
        • Git Bash
        • Git Prune:
  • DOCS
    • DS AP
    • What is JSON Web Token?
      • Environment Variables
      • Git Rebase:
      • Git Workflow:
      • Linting and Formatting
    • Project Docs
      • Eng-Docs-Home
      • Basic Node API
      • Contributing to this scaffold project
      • Examples:
    • PROJECT DESCRIPTION (Feature List)
    • Labs Learners Guide
    • REACT
      • Create React App
      • Awesome React
    • Labs Engineering Docs
      • Okta Basics
      • Roadmap
      • Repositories
  • Workflow
    • Workflow
    • Advice
  • AWS
    • AWS
      • Elastic Beanstalk
        • Elastic Beanstalk DNS
      • Amplify:
        • Amplify-DNS
    • Account Basics
    • AWS-Networking
  • Career & Job Hunt
    • Career
  • LABS
    • Introduction
    • User Stories
    • Why Pairing?
    • GitHub
    • Planning as an Engineer
    • Authentication and Authorization
      • Authentication VS Authorization
    • Giving Feedback
    • Modules Grades Understanding Your ISA
    • Rest Architecture
Powered by GitBook
On this page
  • Basic Node API
  • API doc
  • Requirements
  • Getting Started
  • Enviornment Variables
  • Setup postgres
  • Setup the application
  • Contributing

Was this helpful?

  1. DOCS
  2. Project Docs

Basic Node API

PreviousEng-Docs-HomeNextContributing to this scaffold project

Last updated 3 years ago

Was this helpful?

Basic Node API

Welcome to your Basic Node API Repository. Use this to start your own Greenfield Project using nodejs, express and common industry standards.

This repository assumes a handful of industry practices and standards. We strive to keep you up to date in the industry and as a result, we have made some opinions for you so that you don't have to; you're welcome.

The following working examples can be found in this project template.

  • CRUD for a single resource

  • A Knex providing CRUD methods for DB operations

  • Okta authentication verification middleware

  • eslint setup and prettier formating.

  • Jest tests for routes with mocking of database calls

  • Inline docs with a live route at /api-docs

  • Github workflow config setup to run linting, tests and upload coverage to code climate

  • docker-compose file for spinning up postgresql db. (Win10 Home requires WSL)

API doc

The documentation can be viewed in the /api-docs route of your deploy (or ). ​

Read more about the setup of ​

Requirements

Getting Started

Here is a brief walk thru of setting up the node api application.

Enviornment Variables

The following enviornment variables are required. the dotenv library is installed which will allow you to use a .env file.

  • PORT - API port (optional, but helpful with FE running as well)

    • The following ports are whitelisted for use with okta

      • 3000

      • 8000

      • 8080

  • DS_API_TOKEN - authorization header token for data science api (eg. SUPERSECRET)

  • DATABASE_URL - connection string for postgres database

  • OKTA_URL_ISSUER - The complete issuer URL for verifying okta access tokens. https://example.okta.com/oauth2/default

  • OKTA_CLIENT_ID - the okta client ID.

See .env.sample for example values.

Setup postgres

There are 3 options to get postgresql installed locally [Choose one]:

    • run: docker-compose up -d to start up the postgresql database and pgadmin.

    • If you need to start over you will need to delete the folder $ rm -rf ./data/pg as this is where all of the server data is stored.

      • if the database api-dev was not created then start over.

    • make note of the port, username and password you use to setup the database.

    • Connect your client to the server manually using the values previously mentioned

    • You will need to create a database manually using a client.

    • Make sure to update the DATABASE_URL connection string with the values for username/password, databasename and server port (if not 5432).

    • Sign up for a free Tiney Turtle plan

    • copy the URL to the DATABASE_URL .env variable

    • make sure to add ?ssl=true to the end of this url

Setup the application

From your project locally run the following commands:

  • run: npm install to download all dependencies.

  • run: cp .env.sample .env and update the enviornment variables to match your local setup.

  • run: npm run knex migrate:latest to create the starting schema.

  • run: npm run knex seed:run to populate your db with some data.

  • run: npm run tests to confirm all is setup and tests pass.

  • run: npm run watch:dev to start nodemon in local dev enviornment.

Make sure to update the details of the app name, description and version in the package.json and config/jsdoc.js files.

Contributing

Labs teams must follow all .

DS_API_URL - URL to a data science api. (eg. )

Use docker. for your platform

Open a browser to and you should see the Dev server already defined.

Download and install postgresql directly from the ​

Setup a free account at ​

See the for more info.

routes
model
Swagger
locally
See example
config/jsdoc.md
Labs Engineering Standards
https://ds-bw-test.herokuapp.com/
Install
pgadmin
main site
ElephantSQL
contributing doc