feathers-mongoose-casl
Version 2.1.2
Version 2.1.2
  • feathers-mongoose-casl
  • Docs
    • Migrating
    • START A NEW PROJECT
      • Generate a new project.
      • install feathers-mongoose-casl
      • feathers-logger
      • Update config
      • Add mongoose
      • Email service
      • App hooks
      • Import required services
      • Verify user and filter user fields
      • Swagger, Logger, BodyParser
      • Email templates
      • public HTML
      • Run the server
      • Create you first user
      • vs code snippet extension
      • Test Login
      • Dashboard
      • Create a new Service with casl&Dashboard
      • Posts Postman snippet
      • Add Admin role
      • Done!
    • Advanced
      • Security - eslint-plugin-security
      • Security - rate limiting
      • Development tools
    • Guides
      • Throw errors
      • Auth Flow
      • Authentication
      • Authouriztion
      • /me
      • Rules Cache
      • Create a new service
      • Custom service validtor client data
      • validators
        • Example of use
        • Types
        • Mongoose schema
      • Default value
      • $Populate
      • Upload service
      • Upload files
        • Create upload service
        • Sign File After Populate
        • Storage support
          • Google-cloud
      • Error
      • feathers Client examples
      • Dashboard
        • Dashboard Config
          • Field configuration
          • doc Layout
          • custom Fields
            • customElements
        • Online dashboard
        • Add to your react app
      • customized feathers-mongoose-casl/services
      • Redis - in progress
      • S3
      • Postman
      • Swagger
      • debug
    • Production
      • ENV
    • Feathers wiki
      • Good links
    • utils
      • send email example
      • Async For Each
      • Create heroku server
      • pick
      • vs code snippet extension
      • Persist user request
    • Ecosystem
    • TODO
    • Versions updates
Powered by GitBook
On this page

Was this helpful?

  1. Docs

Production

PreviousdebugNextENV

Last updated 5 years ago

Was this helpful?

Things you must do before you publish your app

  1. Clean config file You can remove any keys you have not used, such as Google-cloud or S3

  2. Ensure your dependencies are secure open this and see how to install snyk

  3. Change cookie name Open config/[env].json file and rename cookie.name

  4. Cross Site Request Forgery Save JWT in localstorage and not in the cookie Server Open config/production.json set cookie.enabled to false Client import localForage from 'localforage'; const feathersApp = require('@feathersjs/feathers'); const auth = require('@feathersjs/authentication-client'); const axios = require('axios'); const rest = require('@feathersjs/rest-client'); const feathers = feathersApp(); const restClient = rest(envConfig.url); feathers.configure(restClient.axios(axios)); feathers.configure(auth({ ... storage: localForage }))

  5. Check the advanced tab for more tools and tips:

best-practice-security
read this
Advanced