What I am trying to understand is: If after creation of express -v pug -c sass projectoName
is it possible to add views using the scafold Express-generator. For example, a partial for the footer, another for the navbar and so on...
In short: How to add a new page with the tool?
Does express-generator add a view after the scaffold is done?
109 Views Asked by samu101108 At
1
There are 1 best solutions below
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 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
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)
Popular # Hahtags
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?
The express generator is a tool for the initial app creation and configuration. It creates a basic app structures, configures the view engine, the css engine... But it stops there.
Once you have made the command
express -v pug -c sass projectoName, you are done with the express-generator. If you want a new view (complete or partial), you have to create a new file (a pug file in this case) in your views folder, manually.It is not like the Ruby on Rails generator for example which can generate views, models, or scaffold a full CRUD.
There are other frameworks, like Sails.js (based on express.js) which have a command line interface and a generate command.