Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBruno Carpinelli
7,974 PointsHow can I implement an Express API with a Admin Panel?
I need to build an ecommerce but I don't know how to link the FrondEnd with the BackEnd on a beautiful Admin Panel for the client. I've implemented this solution with firebase, but the admin console isn't a beautiful way to insert data.
1 Answer
Snir Lugassy
1,824 PointsThe relevance of Express (Node) to implement admin panels is:
- authenticate the access to the panel.
- configure routes
- within the routes manipulate / serve data or files as much as you like
Node / Express / Any other server-side is not responsible of beautiful admin panels, but it can serve you the one you will create.