I'm new to Node development and have started using express recently. I begin my projects using express generator which lays out the file structures and organizes routes, views, etc for me. I went to KrakenJS' website recently and saw that it does the same thing, saying it organizes routes and stuff into separate folders. So I was wondering what the difference or advantage of using one or the other? From my understanding, they do the same thing. Please inform me if I'm wrong.
What's the difference between Express Generator and KrakenJS?
424 views Asked by Dhruv Upadhyay At
2
There are 2 answers
0
Nick
On
Express Generator will scaffold an Express app instance. KrakenJS is built on top of Express and they define certain conventions. Part of of those conventions when generating a kraken app is the app structure. I would recommend getting familiar with Express first and then jump on to using Kraken.
Related Questions in JAVASCRIPT
- Using Puppeteer to scrape a public API only when the data changes
- inline SVG text (js)
- An array of images and a for loop display the buttons. How to assign each button to open its own block by name?
- Storing the preferred font-size in localStorage
- Simple movie API request not showing up in the console log
- Authenticate Flask rest API
- Deploying sveltekit app with gunjs on vercel throws cannot find module './lib/text-encoding'
- How to request administrator rights?
- mp4 embedded videos within github pages website not loading
- Scrimba tutorial was working, suddenly stopped even trying the default
- In Datatables, start value resets to 0, when column sorting
- How do I link two models in mongoose?
- parameter values only being sent to certain columns in google sheet?
- Run main several times of wasm in browser
- Variable inside a Variable, not updating
Related Questions in NODE.JS
- Using Puppeteer to scrape a public API only when the data changes
- How to request administrator rights?
- How do I link two models in mongoose?
- Variable inside a Variable, not updating
- Unable to Post Form Data to MongoDB because of picturepath
- Connection terminated unexpectedly while performing multi row insert using pg-promise
- Processing multiple forms in nodejs and postgresql
- Node.js Server + Socket.IO + Android Mobile Applicatoin XHR Polling Error...?
- How to change the Font Weight of a SelectValue component in React when a SelectItem is selected?
- My unban and ban commands arent showing when i put the slash
- how to make read only file/directory in Mac writable
- How can I outsource worker processes within a for loop?
- Get remote MKV file metadata using nodejs
- Adding google-profanity-words to web page
- Products aren't displayed after fetching data from mysql db (node.js & express)
Related Questions in EXPRESS
- How do I link two models in mongoose?
- Unable to Post Form Data to MongoDB because of picturepath
- Processing multiple forms in nodejs and postgresql
- pnpm firebase app "Could not find a declaration file for module 'mime'"
- Products aren't displayed after fetching data from mysql db (node.js & express)
- What are some MERN projects that will grow me from junior dev to senior
- How Can I Make Dynamic Query In Sequelize with nodeJs
- Express session is not seened in server code
- Get Type Error when using .countDocuments with mongoDB
- Express JS Serve React JS Site With Path Longer Than Just Subdirectory
- Getting a Large Error Output When Calling MongoDB/Mongoose Functions Without an Error Message
- axios.post do not return anything when api call is made within backend
- bcrypt.compare receiving illegal argument string, undefined
- User is connecting to socket.io server twice
- i got "TypeError: data.map is not a function" and i can't get the data from backend
Related Questions in KRAKEN.JS
- Kraken.js - yo kraken Error kraken primordials is not defined
- How to fix ReferenceError: primordials is not defined in node v13.12.0
- kraken.js not creating new project
- Websocket with kraken closes after sending subscription for open position
- KrakenJs with Dust Template looping through object Error
- Dust iterate over array
- How can I have React routed UI on top of Express 4 code base?
- Python: How to set ticker in krakenex for fetching historical OHLC-data?
- kraken java authorisation error {"error":["EAPI:Invalid signature"]}
- Parenthesis around route path
- Extend Sails built in security with lusca
- Got a internal server error after I deploy my node js project to the host
- How to configure Knex for Bookshelf with Kraken.js
- What's the difference between Express Generator and KrakenJS?
- How to display message using connect-flash and express-messages on .dust file on Node
Related Questions in EXPRESS-GENERATOR
- Redirecting in Node.Js
- Punycode Backend Server Issue
- Can't update mkdirp to Istalling Express-generator
- If not using render then which HTML file will be used to display content on the web?
- unable to connect to a localhost server using express generator and mongo db
- Why is the `express` executable not working in my command prompt?
- how to connect mongo db to node js using express generator
- ReferenceError: err is not defined when connecting mongodb with nodejs express
- What is the equivalent command of "express-generator --view=pug my_app" for "express-generator-typescript"?
- The home router "/" in express-generator is being overwritten somewhere, or it's just not working. Why?
- What are the fields for the default express console output?
- Express-Generator error under error.jade file
- How do I call a function from another file?
- npm ERR! semver.simplifyRange is not a function
- Pg Promise timeout while using express generator format, but works fine with basic express sever
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
To further expand on @theoutlander's answer, KrakenJS acts more like a configuration layer on top of express.
It bundles together several modules that have been created (and open sourced) by PayPal to enhance the functionality of a plain vanilla express server.
Kraken was initially built to satisfy enterprise concerns, so it may be overkill for small projects, but it does offer some very nice convenience features out-of-the-box:
A couple of examples: (Note: If you see a feature you're interested in, but don't want the whole bunch, it can be cherry picked and added to a plain express app; as they're all separate modules)
Security: Provided by the lusca module. Gives you protection for XSS, CSRF, X-Frame headers, an many more OWASP best security practices.
Environment-specific configuration: Provided by the confit module. One of the more useful features, in my opinion. You can separate configuration "profiles" for your application. (eg: One configuration specific to the machine you develop on, vs one that's completely different from your final deploy environment)
Middleware management: Provided by the meddleware module. Let's you control the order in which middleware loads, and it's configuration as an external configuration to the app. Keeps your code clean, and it's very powerful when combined with confit
These are just a few of the ones I find most useful, but there's a ton more that Kraken provides to make your life easier as an express dev.