Yes, you should always rely on TDD, no matter what technology used.
Not using TDD means energy waste, never ending task, regression, unsatifaction, etc.
Maybe what is called TDD means clarification : write a red test first, and then write minimalistic code so that test becomes green. No matter if it is pure unit testing (ie test of a function), higher-level integration testing, functional testing or... manual testing. After all TDD terminology doesn't event specify if the test is automated or not.
So if you're completely new to a technology, may be automated unit-test with TDD is a bit overkill. But do TDD anyway. Use older tool you know, use higher level of testing, even on Excel spreadsheet with manual checking.
In short : yes, use TDD.